*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #D32F2F;
    --red-dark: #B71C1C;
    --red-darker: #7A1414;
    --green: #7A9A6B;
    --red-light: #E53935;
    --cream: #F5E6C8;
    --cream-light: #FBF3E4;
    --cream-dark: #E8D5A8;
    --white: #FFFDF7;
    --text-dark: #3E2723;
    --text-muted: #5D4037;
    --gold: #C9A84C;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--cream-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* ========== RIBBON PROMO ========== */
.ribbon-promo {
    position: relative;
    height: 55px;
    background: var(--red);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
}

.ribbon-promo::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='20' height='20' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23ffffff' opacity='0.06'/%3E%3C/svg%3E");
}

.ribbon-promo span {
    position: relative;
    z-index: 1;
    color: var(--gold);
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ========== RIBBON DIVIDER ========== */
.ribbon-divider {
    position: relative;
    height: 80px;
    background: var(--cream-light);
    overflow: hidden;
}

.ribbon-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 55px;
    background: var(--red);
    clip-path: polygon(0% 0%, 5% 50%, 0% 100%, 95% 100%, 100% 50%, 95% 0%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ribbon-divider::after {
    content: '¡De Nuestra Familia a La Tuya!';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 3px;
    z-index: 1;
    white-space: nowrap;
}

.ribbon-dark {
    background: var(--cream);
}

.ribbon-dark::before {
    background: var(--red-dark);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.navbar.scrolled {
    background: var(--red-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--white);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 1px;
    cursor: default;
}

.logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    line-height: 1.1;
    letter-spacing: 2px;
    display: block;
    color: var(--white);
}

.logo-text-sub {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: 3px;
    display: block;
    color: var(--gold);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
    cursor: default;
}

.nav-logo-img:hover {
    transform: scale(1.2);
}

.hero-logo {
    width: clamp(180px, 30vw, 320px);
    height: auto;
    filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.25));
    background: transparent;
    mix-blend-mode: multiply;
    display: block;
    margin: 0 auto 10px;
    transition: transform 0.3s ease;
    cursor: default;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s, box-shadow 0.3s;
    position: relative;
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 2px 12px rgba(201,168,76,0.3);
}

.nav-link.active {
    background: var(--gold);
    color: var(--text-dark);
    box-shadow: 0 2px 15px rgba(201,168,76,0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-social-mobile {
    display: none !important;
}

.nav-social a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
}

.nav-social a:hover {
    opacity: 1;
    transform: scale(1.15);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--red);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='20' height='20' fill='%23ffffff' opacity='0.07'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23ffffff' opacity='0.07'/%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}

.hero-float {
    position: absolute;
    z-index: 0;
    opacity: 1;
    pointer-events: auto;
    will-change: transform;
    transition: transform 0.15s ease-out;
    cursor: default;
}

.hero-float:hover {
    z-index: 10;
}

.hero-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
    transition: transform 0.15s ease-out, filter 0.4s ease;
}

.hero-float:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.5)) brightness(1.1);
}

.hero-float:nth-child(1) {
    top: -8%;
    left: -8%;
    width: 320px;
    height: 320px;
}

.hero-float:nth-child(2) {
    top: -5%;
    right: -10%;
    width: 400px;
    height: 400px;
}

.hero-float:nth-child(3) {
    bottom: 8%;
    left: 2%;
    width: 100px;
    height: 100px;
}

.hero-float:nth-child(4) {
    bottom: -8%;
    right: -8%;
    width: 250px;
    height: 250px;
}

.hero-float:nth-child(5) {
    top: 55%;
    left: 3%;
    width: 180px;
    height: 180px;
}

.hero-float:nth-child(6) {
    top: 50%;
    right: 2%;
    width: 160px;
    height: 160px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(211,47,47,0.6) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 10px 20px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--cream);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--cream);
    margin: 8px 0;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-slogan {
    color: var(--cream-dark);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--red);
    box-shadow: 0 4px 25px rgba(0,0,0,0.25);
    padding: 14px 35px;
    font-size: 0.95rem;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 8px 35px rgba(201,168,76,0.4);
}

.hero .btn-primary:active {
    background: var(--gold);
    color: var(--white);
    transform: translateY(0);
    border-color: var(--gold);
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '→';
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(6px);
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--red-dark);
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin: 8px auto 0;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--cream-dark);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(183,28,28,0.1);
    border-color: var(--red);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: var(--white);
    padding: 15px;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.25);
}

.feature h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--red-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========== PRODUCTS ========== */
.products {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--red), var(--red-light), var(--red));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(201,168,76,0.2);
    border-color: var(--gold);
}

.product-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    color: var(--red-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
    padding: 0 20px;
}

.product-card p {
    display: none;
}

.product-card .product-cta {
    display: none;
}

/* ========== PROMO BANNER ========== */
.promo-banner {
    background: var(--red);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='20' height='20' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23ffffff' opacity='0.06'/%3E%3C/svg%3E");
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.promo-banner h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.promo-banner p {
    font-size: 1.1rem;
    color: var(--cream);
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    color: var(--red-dark);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.social-link:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 3px solid var(--cream-dark);
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--red-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='20' height='20' fill='%23ffffff' opacity='0.05'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23ffffff' opacity='0.05'/%3E%3C/svg%3E");
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
    cursor: default;
}

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

.footer-brand h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.footer-brand p {
    color: var(--cream);
    font-style: italic;
    font-size: 1rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social .social-link {
    background: rgba(255,255,255,0.15);
}

.footer-social .social-link:hover {
    background: var(--white);
    color: var(--red-dark);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--cream);
}

/* ========== ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social .social-links {
        justify-content: center;
    }

    .ribbon-divider::before {
        width: 280px;
    }

    .ribbon-divider::after {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-float:nth-child(1) {
        width: 150px;
        height: 150px;
        top: -5%;
        left: -12%;
    }

    .hero-float:nth-child(2) {
        width: 180px;
        height: 180px;
        top: -3%;
        right: -18%;
    }

    .hero-float:nth-child(3) {
        width: 60px;
        height: 60px;
        bottom: 12%;
        left: 5%;
    }

    .hero-float:nth-child(4) {
        width: 120px;
        height: 120px;
        bottom: -5%;
        right: -12%;
    }

    .hero-float:nth-child(5) {
        width: 90px;
        height: 90px;
        top: 60%;
        left: 0%;
    }

    .hero-float:nth-child(6) {
        width: 80px;
        height: 80px;
        top: 55%;
        right: 0%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-social {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--red-dark);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateY(-120%);
        transition: transform 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        text-align: center;
    }

    .nav-menu.active .nav-social-mobile {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 15px 0 5px;
        border-top: 1px solid rgba(255,255,255,0.2);
        margin-top: 10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .ribbon-divider::before {
        width: 220px;
        height: 45px;
    }

    .ribbon-divider::after {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .ribbon-divider {
        height: 60px;
    }
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
    width: 0;
    z-index: 9999;
    transition: width 0.1s;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(183,28,28,0.4);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(0) scale(1.1);
    box-shadow: 0 6px 25px rgba(201,168,76,0.5);
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ========== STATS SECTION ========== */
.stats-section {
    padding: 60px 0;
    background: var(--red);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='20' height='20' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23ffffff' opacity='0.06'/%3E%3C/svg%3E");
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    letter-spacing: 2px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--cream);
    margin-top: 5px;
}

.stats-logo {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.stats-logo-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.stats-logo-img:hover {
    transform: scale(1.1);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--red-dark);
    font-size: 1.1rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--red);
    background: transparent;
    color: var(--red);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.testimonial-btn:hover {
    background: var(--red);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--red);
}

.faq-question {
    padding: 20px 25px;
    background: var(--cream-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.3s;
}

.faq-item.active .faq-question {
    background: var(--red);
    color: var(--white);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== GALLERY ========== */
.gallery-section {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--red-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 2rem;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.1'%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--red);
}

.cta-section .btn-primary:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 35px rgba(201,168,76,0.4);
}

.cta-section .btn-primary:active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========== PRODUCT MODAL ========== */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 20px;
}

.product-modal.active {
    opacity: 1;
    pointer-events: all;
}

.product-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-modal.active .product-modal-content {
    transform: scale(1) translateY(0);
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--red);
    color: var(--white);
}

.product-modal-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin: 0;
}

.product-modal-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.product-modal-close:hover {
    background: rgba(255,255,255,0.3);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 25px;
    max-height: 55vh;
    overflow-y: auto;
}

.product-modal-grid::-webkit-scrollbar {
    width: 8px;
}

.product-modal-grid::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 4px;
}

.product-modal-grid::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px;
}

.product-modal-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 3px solid var(--cream-dark);
    transition: border-color 0.3s, transform 0.3s;
}

.product-modal-item:hover {
    border-color: var(--gold);
    transform: scale(1.03);
}

.product-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-modal-item:hover img {
    transform: scale(1.1);
}

.product-modal-item .item-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 12px 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-modal-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px 30px;
    background: var(--cream-light);
    border-top: 2px solid var(--cream-dark);
}

.modal-nav-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.2s;
}

.modal-nav-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.modal-counter {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Product card CTA */
.product-cta {
    display: inline-block;
    margin-top: 15px;
    color: var(--red);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.product-card:hover .product-cta {
    color: var(--red-dark);
}

/* Responsive modal */
@media (max-width: 768px) {
    .product-modal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }

    .product-modal-header {
        padding: 15px 20px;
    }

    .product-modal-title {
        font-size: 1.4rem;
    }

    .product-modal-nav {
        gap: 10px;
        padding: 12px 20px;
    }

    .modal-nav-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* ========== FLOATING AD ========== */
.floating-ad {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
    width: 200px;
    cursor: pointer;
    animation: floatAd 3s ease-in-out infinite;
}

.floating-ad-link {
    display: block;
    text-decoration: none;
}

.floating-ad-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.3));
    transition: transform 0.3s, filter 0.3s;
}

.floating-ad-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 35px rgba(0,0,0,0.4));
}

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

@media (max-width: 768px) {
    .floating-ad {
        width: 150px;
        bottom: 90px;
        right: 15px;
    }
}

/* ========== PRODUCT CARD CAROUSEL ========== */
.product-card-carousel {
    cursor: pointer;
    padding: 0;
    overflow: hidden;
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

.product-card-carousel h3 {
    padding: 15px 20px;
    margin: 0;
    text-align: center;
    background: var(--white);
}

.product-card-carousel p {
    display: none;
}

.product-card-carousel .product-cta {
    display: none;
}

/* ========== SMALL PHONES < 480px ========== */
@media (max-width: 480px) {
    .hero-logo {
        width: clamp(180px, 60vw, 280px);
    }

    .hero .btn-primary {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-slogan {
        font-size: 0.9rem;
    }

    .ribbon-promo span {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .product-modal-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        width: 100px;
        height: 100px;
        bottom: 12%;
        right: 5%;
    }

    .hero-badge-text {
        font-size: 0.55rem;
    }

    .hero-badge-highlight {
        font-size: 0.85rem;
    }

    .testimonial-controls {
        gap: 8px;
    }

    .testimonial-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
