/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Variables de Color Corporativos YOLO368 */
:root {
  --rojo-principal: #dc2626;
  --rojo-oscuro: #991b1b;
  --rojo-claro: #ef4444;
  --azul-rey: #1e3a8a;
  --azul-rey-oscuro: #1e40af;
  --azul-rey-claro: #2563eb;
  --dorado: #fbbf24;
  --dorado-oscuro: #f59e0b;
  --dorado-claro: #fcd34d;
  --texto-primario: #333;
  --texto-secundario: #666;
  --texto-blanco: #ffffff;
}

/* Navigation Links with Azul Rey */
.nav-link.text-azul-rey {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link.text-azul-rey:hover {
    color: var(--texto-blanco) !important;
    transform: translateY(-2px);
}

.nav-link.text-azul-rey:focus,
.nav-link.text-azul-rey:active {
    color: var(--dorado) !important;
    outline: none;
}

/* Enlaces activos o cuando está en sección específica */
.nav-link.text-azul-rey.active,
#home .nav-link.text-azul-rey {
    color: var(--dorado) !important;
    font-weight: 600;
}

#home .nav-link.text-azul-rey:hover {
    color: var(--azul-rey-claro) !important;
}

.nav-link.text-azul-rey::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--azul-rey);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link.text-azul-rey:hover::after {
    width: 80%;
}

/* Estilo especial para sección home */
#home .navbar-scrolled .nav-link.text-azul-rey {
    color: var(--azul-rey) !important;
}

/* Estilos para enlace de Iniciar Sesión */
.navbar .btn.btn-rojo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--texto-blanco) !important;
    transition: all 0.3s ease;
}

.navbar .btn.btn-rojo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    color: var(--texto-blanco) !important;
    text-decoration: none;
}

/* Hero Azul Rey Accents */
.text-azul-rey {
    color: var(--azul-rey) !important;
    text-shadow: 0 2px 4px rgba(30, 58, 138, 0.3);
}

/* Hero Image Styles */
.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    filter: drop-shadow(0 10px 30px rgba(30, 58, 138, 0.2));
    transition: all 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 40px rgba(30, 58, 138, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Logo Styles */
.logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo {
        height: 45px;
    }
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--texto-primario);
    overflow-x: hidden;
}

/* Navigation */

.navbar {
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-oscuro) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(30, 58, 138, 0.30);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(30, 58, 138, 0.95);
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--texto-blanco) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--texto-blanco);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-oscuro) 60%, var(--azul-rey-claro) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23fbbf24" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,96C960,107,1056,149,1152,154.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover, cover, cover;
}

/* Floating gold particles in hero */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(251, 191, 36, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 85% 15%, rgba(251, 191, 36, 0.3) 3px, transparent 3px),
        radial-gradient(circle at 25% 75%, rgba(251, 191, 36, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 75% 85%, rgba(251, 191, 36, 0.4) 3px, transparent 3px);
    background-size: 200px 200px, 150px 150px, 180px 180px, 220px 220px;
    background-position: 0 0, 100px 50px, 50px 100px, 150px 150px;
    animation: floatParticles 20s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero MLM Network Background */
.hero-bg-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.network-node {
    position: absolute;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.3);
    animation: pulse 4s ease-in-out infinite;
}

.network-node.node-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.network-node.node-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

.network-node.node-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.4), transparent);
    height: 2px;
    transform-origin: left center;
    animation: lineGlow 3s ease-in-out infinite;
}

.network-line.line-1 {
    width: 200px;
    top: 15%;
    left: 10%;
    transform: rotate(25deg);
    animation-delay: 0.5s;
}

.network-line.line-2 {
    width: 180px;
    top: 55%;
    left: 18%;
    transform: rotate(-15deg);
    animation-delay: 1.5s;
}

.network-line.line-3 {
    width: 220px;
    top: 35%;
    right: 15%;
    transform: rotate(-30deg);
    animation-delay: 2.5s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

/* MLM Network Illustration */
.mlm-illustration {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.mlm-level {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.mlm-level.level-1 { margin-top: 0; }
.mlm-level.level-2 { margin-top: -2rem; }
.mlm-level.level-3 { margin-top: -2rem; }

.mlm-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-oscuro) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.mlm-node.main-node {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-oscuro) 100%);
    color: var(--rojo-oscuro);
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

.mlm-node:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.6);
}

.mlm-node.main-node:hover {
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.7);
}

.mlm-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 50% 20%, rgba(251, 191, 36, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 35% 50%, rgba(251, 191, 36, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 65% 50%, rgba(251, 191, 36, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 25% 80%, rgba(251, 191, 36, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 50% 80%, rgba(251, 191, 36, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 75% 80%, rgba(251, 191, 36, 0.3) 2px, transparent 2px);
    background-size: 100% 100%;
}

/* Network Graphic for About Section */
.network-graphic {
    filter: drop-shadow(0 10px 30px rgba(30, 58, 138, 0.2));
    transition: transform 0.3s ease;
}

.network-graphic:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 40px rgba(30, 58, 138, 0.3));
}

/* Compensation Chart */
.opportunity-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.compensation-chart {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.chart-level {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.chart-bar {
    width: 50px;
    background: linear-gradient(180deg, var(--dorado) 0%, var(--dorado-oscuro) 100%);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 -5px 15px rgba(251, 191, 36, 0.3);
}

.chart-bar:hover {
    transform: scaleY(1.05);
    box-shadow: 0 -8px 25px rgba(251, 191, 36, 0.5);
}

.chart-bar .percent {
    color: var(--rojo-oscuro);
    font-weight: 700;
    font-size: 0.9rem;
}

.chart-level .label {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.chart-level.level-1 .chart-bar {
    background: linear-gradient(180deg, var(--dorado) 0%, var(--dorado-oscuro) 100%);
}

.chart-level.level-2 .chart-bar {
    background: linear-gradient(180deg, var(--azul-rey-claro) 0%, var(--azul-rey) 100%);
}

.chart-level.level-3 .chart-bar {
    background: linear-gradient(180deg, var(--azul-rey) 0%, var(--azul-rey-oscuro) 100%);
}

.chart-level.level-4 .chart-bar {
    background: linear-gradient(180deg, var(--rojo-principal) 0%, var(--rojo-oscuro) 100%);
}
/* Hero Text Structure */
.hero-eyebrow {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 999px;
    color: var(--dorado);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-claro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.4s forwards;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-pill-group {
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    animation-fill-mode: both;
}

.hero-content .btn {
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    animation-fill-mode: both;
}

.hero-trust {
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content h1 {
    animation: fadeInUp 1s ease;
}

.hero-content p {
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.trust-logos {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trust-logos span {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-flex;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--azul-rey);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 600;
}

.section-heading p {
    margin-top: 1rem;
}

.hero-image {
    animation: fadeInRight 1s ease 0.6s;
    animation-fill-mode: both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-oscuro) 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.30);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.45);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Botones con colores corporativos */
.btn-rojo {
    background: linear-gradient(135deg, var(--rojo-principal) 0%, var(--rojo-oscuro) 100%);
    border: none;
    color: var(--texto-blanco);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-rojo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, var(--rojo-claro) 0%, var(--rojo-principal) 100%);
    color: var(--texto-blanco);
}

.btn-azul {
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-oscuro) 100%);
    border: none;
    color: var(--texto-blanco);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-azul:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, var(--azul-rey-claro) 0%, var(--azul-rey) 100%);
    color: var(--texto-blanco);
}

/* Textos con colores corporativos */
.text-rojo {
    color: var(--rojo-principal) !important;
}

.text-azul {
    color: var(--azul-rey) !important;
}

.text-dorado {
    color: var(--dorado) !important;
}

/* Gold accent buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-oscuro) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--rojo-oscuro);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    color: var(--rojo-oscuro);
}

/* Feature Box */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--texto-blanco) 0%, var(--dorado-claro) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(251, 191, 36, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 2px rgba(251, 191, 36, 0.4);
    border-color: rgba(251, 191, 36, 0.3);
}

/* Product Cards */
.product-card {
    background: linear-gradient(135deg, var(--texto-blanco) 0%, var(--dorado-claro) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(251, 191, 36, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2), 0 0 0 3px rgba(251, 191, 36, 0.5);
    border-color: rgba(251, 191, 36, 0.4);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 20px 20px 0 0;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--rojo-principal) 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 2rem;
}

.product-content h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.product-price {
    margin: 1rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azul-rey);
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

/* Gold badge for special products */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #7c2d12;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

/* Opportunity Stats */
.opportunity-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-oscuro) 60%, var(--azul-rey-claro) 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.30), 0 0 0 2px rgba(251, 191, 36, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
    transition: left 0.6s;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.45), 0 0 0 3px rgba(251, 191, 36, 0.5);
}

/* Gold accent for stats */
.stat-box .display-4 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    font-weight: 800;
}

/* Gold sparkles around stats */
.stat-box::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, var(--texto-blanco) 0%, var(--dorado-claro) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(251, 191, 36, 0.2);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 0 2px rgba(251, 191, 36, 0.4);
    border-color: rgba(251, 191, 36, 0.3);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, var(--texto-blanco) 0%, var(--dorado-claro) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.8s;
}

.contact-form:hover::before {
    left: 100%;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--azul-rey);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

/* Contact Info */
.contact-info {
    text-align: center;
}

.contact-item {
    background: linear-gradient(135deg, var(--texto-blanco) 0%, var(--dorado-claro) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(251, 191, 36, 0.2);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 2px rgba(251, 191, 36, 0.4);
    border-color: rgba(251, 191, 36, 0.3);
}

/* Footer */
.footer-logo {
    height: 40px;
    width: auto;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fbbf24 !important;
    transform: translateY(-3px);
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    color: #7c2d12;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .product-card,
    .testimonial-card,
    .feature-box {
        margin-bottom: 2rem;
    }
    
    .opportunity-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-box {
        flex: 1 1 250px;
        margin: 0.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .stat-box {
        flex: 1 1 200px;
        padding: 1.5rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-claro) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--azul-rey-claro) 0%, var(--azul-rey) 100%);
}
