/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --primary-color: #EE6900;
    /* Orange */
    --primary-hover: #D25400;
    --secondary-color: #EE6900;
    /* Yellow/Gold */
    --secondary-hover: #D25400;
    --nav-active: #EE6900;
    --dark-green: #3B7200;
    --dark-color: #53A000;
    /* Dark Brown (Header/Footer) */
    --light-color: #f8f6f0;
    /* Light Cream Background */
    --text-color: #4a4a4a;
    /* Dark Gray Text */
    --green-color: #558a2d;
    /* Button Green */
    --green-hover: #457323;
    --white: #F7F4EE;

    --font-main: 'Outfit', sans-serif;

    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

    --border-radius: 8px;
    --border-radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.decoration {
    display: inline-block;
    width: 40px;
    height: 15px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 10" fill="%23EE6900"><path d="M12 0L24 10H0z"/></svg>');
    /* Simple leaf/wave decoration placeholder */
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

.decoration.left {
    transform: rotate(180deg);
}

.section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-green {
    background-color: transparent;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: bold;
}

.btn-green:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background-color: var(--dark-color);
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    color: var(--white);
}

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

.logo-title {
    font-size: 1.2rem;
    font-weight: 300;
}

.logo-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
}

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

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--nav-active);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 500px;
    padding: 6rem 0;
    background-image: url('images/hero-bg.jpg');
    /* Background image will be generated */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-divider {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: -80px;
    z-index: 2;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(1.5);
}

.section-divider .shape-fill {
    fill: var(--light-color);
}


/* ==========================================================================
   Products Section
   ========================================================================== */
.products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px 10px 30px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.products-grid .product-card {
    flex: 0 0 auto;
    width: 340px;
    scroll-snap-align: center;
}

/* --- Product Card --- */
.product-card {
    background-color: #F5F1E6;
    border-radius: 20px;
    padding: 16px 16px 28px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    /* NO overflow:hidden — so the orange corner and green accent show properly */
}

/* Green vertical accent line on the right side of the card (like in the reference) */
.product-card::after {
    content: '';
    position: absolute;
    top: 42%;
    right: -2px;
    width: 5px;
    height: 100px;
    background-color: #7DA041;
    border-radius: 5px;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

/* Image wrapper */
.product-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden; /* clip the image corners */
}

/* Orange corner accent on top-left of image (like in the reference) */
.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #E69500;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 3;
}

.product-image-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Product info area */
.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    padding: 5px 8px 0 8px;
}

/* Product title — dark green, bold */
.product-title-print {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #2F4A22;
    margin: 5px 0 0 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* Star separator between green lines */
.product-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 10px 0;
    width: 70%;
}
.product-separator .line {
    height: 1.5px;
    background-color: #7DA041;
    flex-grow: 1;
}
.product-separator i {
    color: #EE6900;
    font-size: 0.85rem;
}

/* Subtitle row (HAMBURGÃO! + Nossa grande estrela!) */
.product-subtitle {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 5px;
}
/* "HAMBURGÃO!" — dark green bold, NOT orange */
.highlight-orange {
    font-family: 'Montserrat', sans-serif;
    color: #2F4A22;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    font-weight: 900;
    text-transform: uppercase;
}
/* "Nossa grande estrela!" — dark green italic */
.highlight-green {
    color: #2F4A22;
    font-style: italic;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Thin green horizontal line */
.product-line {
    border: none;
    border-top: 1.5px solid #7DA041;
    margin: 5px auto 15px auto;
    width: 90%;
}

/* Description text */
.product-description-print {
    color: #3A3A3A;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    flex-grow: 1;
}
.highlight-orange-text {
    color: #EE6900;
    font-weight: 700;
}
.description-bold {
    font-weight: 800;
}

/* WhatsApp "Fale conosco" button — matches reference exactly */
.btn-whatsapp-print {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background-color: transparent;
    border: 2.5px solid #2F4A22;
    color: #2F4A22;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
    width: 85%;
    max-width: 280px;
    margin-top: auto;
}
.btn-whatsapp-print i {
    font-size: 1.6rem;
}
.btn-whatsapp-print:hover {
    background-color: #2F4A22;
    color: #F5F1E6;
}

/* Carousel wrapper & navigation buttons */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 35px;
}
.carousel-btn {
    background-color: #EE6900;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(238, 105, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(238, 105, 0, 0.5);
}
.prev-btn {
    left: -10px;
}
.next-btn {
    right: -10px;
}



/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-section {
    background-color: #f2efe9;
    background-image: linear-gradient(rgba(242, 239, 233, 0.85), rgba(242, 239, 233, 0.85)), url('images/bg-benefits.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-item {
    padding: 20px;
}

.benefit-icon {
    font-size: 3rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.1rem;
    color: var(--dark-green);
    font-weight: 600;
}

/* ==========================================================================
   Testimonials Section (Quem compra Yupi, recomenda)
   ========================================================================== */
.testimonials-section {
    background-color: #FAFAEA; /* Fundo geral para combinar com o site */
}

.testimonials-wrapper {
    background-color: #1A3B18; /* Verde escuro do fundo */
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
}

.testimonials-header {
    flex: 0 0 250px; /* Largura fixa para a coluna da esquerda */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.testimonials-icon-title {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonials-icon {
    font-size: 2rem;
    color: #F8B400; /* Estrela amarela/laranja */
}

.testimonials-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0;
}

.testimonials-stars {
    color: #F8B400;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
}

.testimonials-cards-container {
    flex: 1;
    display: flex;
    gap: 20px;
}

.testimonial-card {
    background-color: #F8F8F8; /* Fundo levemente bege/cinza claro dos cards */
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.quote-icon {
    color: #C0C0C0; /* Aspas cinza claro */
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* Para empurrar a autoria para baixo */
}

.testimonial-author-info {
    margin-top: auto;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #1A3B18;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.testimonial-location {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: #666;
}

/* Dots para navegação/indicativo */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonials-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #E0E0E0;
    border-radius: 50%;
    cursor: pointer;
}

.testimonials-dots .dot.active {
    background-color: #1A3B18;
}

/* Responsividade */
@media (max-width: 992px) {
    .testimonials-wrapper {
        flex-direction: column;
    }
    
    .testimonials-header {
        flex: auto;
        text-align: center;
        align-items: center;
    }

    .testimonials-icon-title {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .testimonials-cards-container {
        flex-direction: column;
    }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works-section {
    background-color: #f2efe9;
    background-image: linear-gradient(rgba(242, 239, 233, 0.85), rgba(242, 239, 233, 0.85)), url('images/bg-how-it-works.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.step-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--dark-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.85rem;
    color: #666;
}

/* ==========================================================================
   About & Contact Section
   ========================================================================== */
.about-contact-section {
    position: relative;
}

.about-contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.about-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    scroll-margin-top: 100px; /* Offset for sticky header */
}

.form-title {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin: -30px -30px 20px -30px;
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-input {
    resize: vertical;
}

/* ==========================================================================
   Delivery Section (Entrega rápida e eficiente)
   ========================================================================== */
.delivery-section {
    background-color: #F5F1E6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.delivery-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.delivery-header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-logo-badge {
    background-color: #EE6900;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.delivery-logo-badge img {
    filter: brightness(10);
}

.delivery-truck-icon {
    margin-top: 5px;
}

.delivery-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.1;
    margin: 0;
}
.delivery-title-green {
    color: #2F4A22;
}
.delivery-title-orange {
    color: #EE6900;
    font-style: italic;
    font-weight: 700;
}

.delivery-header-right {
    flex: 1.2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.delivery-van-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Info items */
.delivery-info-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.delivery-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.delivery-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.delivery-info-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #2F4A22;
    line-height: 1.4;
}
.delivery-info-text strong {
    font-weight: 800;
}
.delivery-info-sub {
    color: #555;
    font-size: 0.85rem;
    margin-top: 2px;
}

/* CTA Button */
.delivery-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #EE6900;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 25px;
}
.delivery-cta-btn:hover {
    background-color: #D25400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 105, 0, 0.3);
}
.delivery-cta-btn i {
    font-size: 0.9rem;
}

/* Bottom features bar */
.delivery-features-bar {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 14px;
    padding: 18px 20px;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.delivery-feature i {
    font-size: 1.4rem;
    color: #7DA041;
}

.delivery-feature span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2F4A22;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .delivery-header {
        flex-direction: column;
    }
    .delivery-features-bar {
        flex-wrap: wrap;
        gap: 15px;
    }
    .delivery-feature {
        flex: 0 0 45%;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--dark-color);
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--white);
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--white);
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .about-contact-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .header-actions .btn {
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-divider {
        height: 40px;
        margin-top: -40px;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #F5F1E6;
    border: 2.5px solid #2F4A22;
    color: #2F4A22;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.whatsapp-float i {
    font-size: 1.6rem;
}

.whatsapp-float:hover {
    background-color: #2F4A22;
    color: #F5F1E6;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .whatsapp-float {
        padding: 10px 20px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float i {
        font-size: 1.4rem;
    }
}
