/* 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;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* 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;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    color: var(--texto-secundario);
}

/* Navigation */

.navbar {
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-oscuro) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(30, 58, 138, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.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: 
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        linear-gradient(165deg, #0f172a 0%, var(--azul-rey) 40%, #111827 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 100px;
}

.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.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Hero Canvas Background */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* 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%;
}

/* Hero Custom Image */
.hero-custom-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: fadeInRight 1s ease 0.6s forwards;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-custom-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    opacity: var(--hero-img-opacity, 1);
}

.hero-custom-image img:hover {
    transform: scale(1.03);
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 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 Logo Grande */
.hero-logo {
    animation: fadeInUp 1s ease 0.3s forwards;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-logo-img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    border-radius: 20px;
    margin: 1rem 0 2rem 0;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

/* Contenido del Hero alineado a la izquierda en desktop, centrado en móvil */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 991px) {
    .hero-content {
        align-items: center;
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 200px;
    }
}



.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    font-weight: 400;
    max-width: 650px;
    margin-bottom: 2rem;
    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-pill-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .hero-pill-group {
        justify-content: center;
    }
}

.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: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 1rem 2rem;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-top: 3rem;
}

@media (max-width: 991px) {
    .hero-trust {
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 1rem;
    }
}

.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 35px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-azul::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.btn-azul:hover::after {
    left: 120%;
}

.btn-azul:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 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 35px;
    font-weight: 600;
    color: var(--rojo-oscuro);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 10;
    letter-spacing: 0.5px;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.btn-gold:hover::after {
    left: 120%;
}

.btn-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 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);
}

/* ========================================
   MODERN FOOTER DESIGN
   ======================================== */
.main-footer {
    background: linear-gradient(135deg, #0b0f19 0%, #1e3a8a 50%, #0b0f19 100%);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: -1;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-rey), var(--dorado), var(--rojo-principal));
    opacity: 0.8;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--dorado);
}

.footer-center .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.8rem;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--dorado);
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Social Buttons */
.social-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 25px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--azul-rey);
    color: #fff !important;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
    border-color: var(--azul-rey-claro);
}

.social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-btn.linkedin:hover { background: #0077b5; border-color: #0077b5; }

/* Newsletter Box */
.newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: var(--dorado);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.newsletter-form .form-control {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    padding-left: 20px;
    font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn-newsletter {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: var(--dorado) !important;
    color: #7c2d12 !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-form .btn-newsletter:hover {
    transform: scale(1.1) rotate(15deg);
    background: #fff !important;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.copyright-text {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--azul-rey);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dorado);
    color: #7c2d12 !important;
    transform: translateY(-10px);
}

@media (max-width: 991px) {
    .footer-center {
        margin: 40px 0;
    }
}

/* 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;
        padding-top: 100px;
    }

    .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;
    scroll-padding-top: 100px;
}

/* 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%);
}

/* ========================================
   PRODUCTOS SECTION - DISEÑO PROFESIONAL MLM
   ======================================== */

.products-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* Trust Badges */
.product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--azul-rey);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.15);
    border-color: var(--azul-rey);
}

.trust-badge i {
    color: var(--dorado);
}

/* Product Filters */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    background: #f1f5f9;
    color: var(--texto-secundario);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(30, 58, 138, 0.1);
    color: var(--azul-rey);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-oscuro) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

/* Product Loader Animation */
.product-loader {
    padding: 3rem;
}

.loader-bottle {
    width: 60px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.loader-cap {
    width: 30px;
    height: 15px;
    background: var(--azul-rey-oscuro);
    border-radius: 5px 5px 0 0;
    margin: 0 auto;
    animation: capBounce 1s ease-in-out infinite;
}

.loader-body {
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-claro) 100%);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 1.5s ease-in-out infinite;
}

@keyframes capBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Product Card Pro - Diseño Premium */
.product-card-pro {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-rey), var(--dorado), var(--rojo-principal));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-pro:hover::before {
    opacity: 1;
}

.product-card-pro:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Product Image Pro */
.product-image-pro {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-pro:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    padding: 0.8rem 1.5rem;
    background: white;
    border: none;
    border-radius: 50px;
    color: var(--azul-rey);
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card-pro:hover .btn-quick-view {
    transform: translateY(0);
}

.btn-quick-view:hover {
    background: var(--dorado);
    color: var(--rojo-oscuro);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.badge-gold {
    background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-oscuro) 100%);
    color: var(--rojo-oscuro);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.badge-blue {
    background: linear-gradient(135deg, var(--azul-rey) 0%, var(--azul-rey-claro) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.badge-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.badge-red {
    background: linear-gradient(135deg, var(--rojo-principal) 0%, var(--rojo-oscuro) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.badge-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Product Content Pro */
.product-content-pro {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.product-rating i {
    color: var(--dorado);
    font-size: 0.85rem;
}

.rating-count {
    color: var(--texto-secundario);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--texto-primario);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--texto-secundario);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-flavor {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--dorado-oscuro);
    margin-bottom: 1rem;
}

.product-flavor i {
    color: #10b981;
}

/* Product Footer */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.product-price-pro {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--azul-rey);
}

.price-points {
    font-size: 0.75rem;
    color: var(--dorado-oscuro);
    font-weight: 600;
}

.btn-add-cart {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--rojo-principal) 0%, var(--rojo-oscuro) 100%);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-add-cart:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Products CTA */
.products-cta {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 25px;
    border: 2px dashed rgba(30, 58, 138, 0.2);
}

/* Empty/Error States */
.empty-products,
.error-products {
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.empty-products i,
.error-products i {
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-trust-badges {
        gap: 0.5rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .product-filters {
        padding: 0.75rem;
        border-radius: 20px;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .product-image-pro {
        height: 220px;
    }

    .products-cta {
        padding: 2rem 1rem;
    }

    .products-cta .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0 !important;
    }
}

/* Testimonial Photo Styles */
.testimonial-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    width: calc(100% + 3rem);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-photo img {
    transform: scale(1.05);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.author-info h6 {
    color: var(--azul-rey);
    font-weight: 600;
}