/* ============================================================
   HortVerde Landing Page - Premium CSS
   Paleta: Bow #7E2625 | Warm Wood #3C1B0F | Candle #F1ECDB
           Leaf #868859 | Juniper #292F17
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
    --bow: #7E2625;
    --bow-light: #9e3a39;
    --bow-dark: #5e1c1b;
    --warm-wood: #3C1B0F;
    --candle: #F1ECDB;
    --candle-dark: #e0d9c4;
    --leaf: #868859;
    --leaf-light: #a3a574;
    --juniper: #292F17;
    --juniper-light: #3d4525;

    --white: #FFFFFF;
    --off-white: #FAFAF5;
    --black: #111111;
    --gray-100: #f5f5f0;
    --gray-200: #e8e8e0;
    --gray-300: #d0d0c5;
    --gray-600: #6b6b60;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Outfit', -apple-system, sans-serif;

    --shadow-sm: 0 2px 8px rgba(41, 47, 23, 0.08);
    --shadow-md: 0 4px 20px rgba(41, 47, 23, 0.12);
    --shadow-lg: 0 8px 40px rgba(41, 47, 23, 0.16);
    --shadow-xl: 0 16px 64px rgba(41, 47, 23, 0.2);
    --shadow-glow-red: 0 0 30px rgba(126, 38, 37, 0.3);
    --shadow-glow-green: 0 0 30px rgba(134, 136, 89, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--bow) var(--candle);
    cursor: none;
}

body {
    font-family: var(--font-body);
    color: var(--juniper);
    background: var(--off-white);
    overflow-x: hidden;
    line-height: 1.7;
    cursor: none;
}

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

::-webkit-scrollbar-track {
    background: var(--candle);
}

::-webkit-scrollbar-thumb {
    background: var(--bow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bow-dark);
}

/* ── Custom Cursor ── */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--bow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    mix-blend-mode: difference;
    background: transparent;
}

.custom-cursor.hover {
    width: 44px;
    height: 44px;
    background: rgba(126, 38, 37, 0.15);
    border-color: var(--leaf);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--bow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 100001;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease;
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bow), var(--leaf), var(--bow));
    background-size: 200% 100%;
    animation: progressGradient 3s ease infinite;
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
}

@keyframes progressGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ── Selection ── */
::selection {
    background: var(--bow);
    color: var(--candle);
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 800;
}

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

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

button {
    cursor: none;
}

/* ══════════════════════════════════════════════
   NAVIGATION BAR
   ══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 16px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(241, 236, 219, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 20px rgba(41, 47, 23, 0.1);
    padding: 10px 60px;
    border-bottom: 1px solid rgba(134, 136, 89, 0.15);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo img {
    height: 50px;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar.scrolled .navbar-logo img {
    height: 40px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.navbar-links li a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--candle);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    letter-spacing: 0.3px;
}

.navbar.scrolled .navbar-links li a {
    color: var(--juniper);
}

.navbar-links li a:hover {
    background: rgba(126, 38, 37, 0.1);
    color: var(--bow);
}

.navbar-links li a.active {
    background: var(--bow);
    color: var(--candle);
}

.navbar-cta {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    background: var(--bow) !important;
    color: var(--candle) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    box-shadow: var(--shadow-glow-red);
    transition: all var(--transition-base) !important;
}

.navbar-cta:hover {
    background: var(--bow-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(126, 38, 37, 0.4) !important;
}

/* Hamburger Mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 10000;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--candle);
    transition: var(--transition-base);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--juniper);
}

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero-wrapper {
    position: relative;
    height: 150vh;
    /* Altura ajustada para 5 imagens (50vh de área útil) mantendo 1 frame por scroll */
}

.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg,
            var(--bow) 0%,
            var(--bow-light) 30%,
            #421a1a 50%,
            var(--candle-dark) 75%,
            var(--candle) 100%);
    background-size: 100% 200%;
    animation: heroGradientShift 8s ease infinite alternate;
}

@keyframes heroGradientShift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 40%;
    }
}

/* Partículas de fundo animadas */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(134, 136, 89, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(241, 236, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(126, 38, 37, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 236, 219, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(241, 236, 219, 0.2);
    color: var(--candle);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 900;
    color: var(--candle);
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-title span {
    display: inline-block;
    background: linear-gradient(135deg, var(--candle), #d4c9a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .accent {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 0.5em;
    background: linear-gradient(135deg, var(--leaf-light), var(--candle));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(241, 236, 219, 0.85);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--candle);
    color: var(--bow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    border: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(241, 236, 219, 0.3);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--candle);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(241, 236, 219, 0.3);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--candle);
    background: rgba(241, 236, 219, 0.1);
    transform: translateY(-3px);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* Hero Image Sequence */
.hero-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 600px;
    height: 70vh;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-image-frame img {
    position: absolute;
    max-width: 140%;
    max-height: 120%;
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25));
    animation: floatImage 5s ease-in-out infinite;
}

.hero-image-frame img.active {
    opacity: 1;
    /* Efeito Neon em volta dos recortes transparentes usando múltiplos drop-shadows */
    filter: 
        drop-shadow(0 0 8px rgba(220, 53, 69, 0.8))
        drop-shadow(0 0 25px rgba(126, 38, 37, 0.9))
        drop-shadow(0 0 50px rgba(126, 38, 37, 0.5))
        drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
    z-index: 2;
}

/* Glow ring atrás da imagem */
.hero-image-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 236, 219, 0.12) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Scroll indicator na hero */
.hero-scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    opacity: 0.7;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--candle);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--candle), transparent);
    animation: scrollLinePulse 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

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

@keyframes scrollLinePulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Image counter badge */
.hero-image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(241, 236, 219, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(241, 236, 219, 0.2);
    color: var(--candle);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 5;
}

/* Hero Wave Divider */
.hero-wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 6;
    line-height: 0;
}

.hero-wave-divider svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* ══════════════════════════════════════════════
   SHAPE DIVIDERS (Unique per section)
   ══════════════════════════════════════════════ */
.shape-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.shape-divider-bottom {
    bottom: -2px;
}

.shape-divider-top {
    top: -2px;
}

.shape-divider svg {
    display: block;
    width: calc(100% + 2px);
    position: relative;
}


/* ══════════════════════════════════════════════
   FLOATING DETAILS (ASSETS)
   ══════════════════════════════════════════════ */
.floating-detail {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
    animation: floatDetail 6s ease-in-out infinite;
    opacity: 0.8;
}

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

.fd-1 { top: 10%; right: -2%; width: 240px; animation-delay: 0s; }
.fd-2 { bottom: 15%; right: -2%; width: 240px; animation-delay: 1s; opacity: 1; }
.fd-3 { top: 10%; left: -2%; width: 240px; animation-delay: 2s; }
.fd-4 { top: 5%; right: -3%; width: 300px; animation-delay: 1.5s; }
.fd-5 { top: 45%; left: 13%; width: 200px; animation-delay: 0.5s; }

/* ══════════════════════════════════════════════
   SECTION BASE STYLES
   ══════════════════════════════════════════════ */
section {
    position: relative;
    overflow: hidden;
}

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

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bow);
    margin-bottom: 16px;
    padding: 6px 18px;
    background: rgba(126, 38, 37, 0.08);
    border-radius: var(--radius-full);
}

.section-label svg {
    width: 16px;
    height: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--juniper);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-title .highlight {
    color: var(--bow);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(126, 38, 37, 0.12);
    border-radius: 4px;
    z-index: -1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ══════════════════════════════════════════════
   SECTION 1 - ESPECIALISTA EM TOMATE
   ══════════════════════════════════════════════ */
#especialista {
    background: var(--off-white);
    padding: 130px 0 160px;
}

.especialista-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.especialista-visual {
    position: relative;
}

.especialista-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    transition: transform var(--transition-slow);
}

.especialista-image-main:hover {
    transform: rotate(0deg) scale(1.02);
}

.especialista-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.especialista-image-main:hover img {
    transform: scale(1.05);
}

.especialista-image-secondary {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    z-index: 2;
    transition: transform var(--transition-slow);
}

.especialista-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.especialista-image-secondary.img-1 {
    width: 200px;
    height: 150px;
    bottom: -20px;
    left: -40px;
    transform: rotate(5deg);
    border: 4px solid var(--white);
}

.especialista-image-secondary.img-2 {
    width: 180px;
    height: 180px;
    top: -20px;
    right: -30px;
    transform: rotate(-5deg);
    border: 4px solid var(--off-white);
}

.especialista-image-secondary:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 4;
}

.especialista-badge-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--bow);
    color: var(--candle);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow-red);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 3;
}

.especialista-badge-float .badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.especialista-badge-float .badge-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

@keyframes floatBadge {

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

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

.especialista-accent-circle {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(134, 136, 89, 0.2);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.especialista-content {
    padding-left: 20px;
}

.especialista-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--juniper);
    margin-bottom: 24px;
    line-height: 1.15;
}

.especialista-content h2 .highlight {
    color: var(--bow);
}

.especialista-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 32px;
}

.especialista-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(126, 38, 37, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--bow), var(--bow-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--candle);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--juniper);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    color: var(--gray-600);
}

/* ══════════════════════════════════════════════
   SECTION 2 - ENTREGA RÁPIDA
   ══════════════════════════════════════════════ */
#entrega {
    background: var(--juniper);
    color: var(--candle);
    padding: 160px 0 180px;
    position: relative;
}

#entrega::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(126, 38, 37, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(134, 136, 89, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.entrega-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.entrega-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--candle);
    margin-bottom: 24px;
}

.entrega-text h2 .highlight {
    color: var(--leaf-light);
}

.entrega-text p {
    font-size: 1.05rem;
    color: rgba(241, 236, 219, 0.7);
    line-height: 1.9;
    margin-bottom: 40px;
}

.entrega-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(241, 236, 219, 0.06);
    border: 1px solid rgba(241, 236, 219, 0.1);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(241, 236, 219, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(134, 136, 89, 0.3);
}

.stat-card .stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--bow), var(--bow-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--candle);
}

.stat-card .stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--candle);
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 0.85rem !important;
    color: rgba(241, 236, 219, 0.6) !important;
    margin-bottom: 0 !important;
    font-weight: 500;
}

.entrega-visual {
    position: relative;
}

.entrega-map-card {
    background: rgba(241, 236, 219, 0.06);
    border: 1px solid rgba(241, 236, 219, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.entrega-map-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--candle);
    display: flex;
    align-items: center;
    gap: 10px;
}

.entrega-map-card h3 svg {
    width: 22px;
    height: 22px;
    color: var(--leaf-light);
}

.delivery-locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(241, 236, 219, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--bow);
    transition: all var(--transition-base);
}

.location-item:hover {
    background: rgba(241, 236, 219, 0.1);
    transform: translateX(6px);
}

.location-item svg {
    width: 20px;
    height: 20px;
    color: var(--leaf-light);
    min-width: 20px;
}

.location-item span {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
}

.entrega-schedule {
    margin-top: 28px;
    padding: 20px 24px;
    background: rgba(126, 38, 37, 0.15);
    border-radius: var(--radius-md);
    border: 1px solid rgba(126, 38, 37, 0.2);
    display: flex;
    align-items: center;
    gap: 14px;
}

.entrega-schedule svg {
    width: 24px;
    height: 24px;
    color: var(--bow-light);
    min-width: 24px;
}

.entrega-schedule .schedule-info {
    display: flex;
    flex-direction: column;
}

.entrega-schedule .schedule-info strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--candle);
}

.entrega-schedule .schedule-info span {
    font-size: 0.85rem;
    color: rgba(241, 236, 219, 0.6);
}

/* ══════════════════════════════════════════════
   SECTION 3 - TIPOS DE TOMATE
   ══════════════════════════════════════════════ */
#tomates {
    background: var(--candle);
    padding: 140px 0 180px;
}

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

.tomate-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-slow);
    position: relative;
    group: true;
}

.tomate-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(126, 38, 37, 0.2);
}

.tomate-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100), var(--candle));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.tomate-card-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform var(--transition-slow);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.tomate-card:hover .tomate-card-image img {
    transform: scale(1.1) rotate(-3deg);
}

.tomate-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bow);
    color: var(--candle);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tomate-card-content {
    padding: 28px;
}

.tomate-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--juniper);
    margin-bottom: 12px;
}

.tomate-card-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tomate-card-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tomate-card-uses span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: rgba(134, 136, 89, 0.1);
    color: var(--leaf);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.tomate-card-uses span svg {
    width: 12px;
    height: 12px;
}

/* ══════════════════════════════════════════════
   SECTION 4 - PARA QUEM FORNECEMOS / DEPOIMENTOS
   ══════════════════════════════════════════════ */
#clientes {
    background: var(--off-white);
    padding: 140px 0 180px;
}

.clientes-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.clientes-intro-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--juniper);
    margin-bottom: 20px;
}

.clientes-intro-text h2 .highlight {
    color: var(--bow);
}

.clientes-intro-text p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.9;
}

.clientes-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cliente-type {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.cliente-type:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(126, 38, 37, 0.15);
}

.cliente-type-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--leaf), var(--leaf-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--candle);
}

.cliente-type-icon svg {
    width: 22px;
    height: 22px;
}

.cliente-type span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--juniper);
}

/* Depoimentos */
.depoimentos-header {
    text-align: center;
    margin-bottom: 50px;
}

.depoimentos-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--juniper);
    margin-bottom: 10px;
}

.depoimentos-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

.depoimentos-slider {
    overflow: hidden;
    width: 100%;
}

.depoimentos-track {
    display: flex;
    width: 300%;
    animation: slideDepoimentos 40s linear infinite;
}

.depoimentos-track:hover {
    animation-play-state: paused;
}

.depoimentos-group {
    width: 33.3333%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 0 10px;
}

@keyframes slideDepoimentos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-66.6666%); }
}

.depoimento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(126, 38, 37, 0.15);
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bow), var(--leaf));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.depoimento-card:hover::before {
    opacity: 1;
}

.depoimento-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.depoimento-stars svg {
    width: 18px;
    height: 18px;
    fill: #f0a500;
    color: #f0a500;
}

.depoimento-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.depoimento-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bow), var(--leaf));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--candle);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
}

.depoimento-info strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--juniper);
}

.depoimento-info span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.depoimento-google {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--gray-300);
    font-weight: 500;
}

.depoimento-google svg {
    width: 14px;
    height: 14px;
}

/* ══════════════════════════════════════════════
   SECTION 5 - CONTATO
   ══════════════════════════════════════════════ */
#contato {
    background: var(--juniper);
    color: var(--candle);
    padding: 140px 0 80px;
    position: relative;
}

#contato::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(126, 38, 37, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(134, 136, 89, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contato-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contato-info h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--candle);
    margin-bottom: 16px;
}

.contato-info h2 .highlight {
    color: var(--leaf-light);
}

.contato-info>p {
    font-size: 1.05rem;
    color: rgba(241, 236, 219, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contato-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contato-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    background: rgba(241, 236, 219, 0.06);
    border: 1px solid rgba(241, 236, 219, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.contato-method:hover {
    background: rgba(241, 236, 219, 0.1);
    transform: translateX(8px);
    border-color: rgba(134, 136, 89, 0.3);
}

.contato-method-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--candle);
}

.contato-method-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contato-method-icon.instagram-icon {
    background: linear-gradient(135deg, #E4405F, #833AB4);
}

.contato-method-icon.location-icon {
    background: linear-gradient(135deg, var(--bow), var(--bow-light));
}

.contato-method-icon.clock-icon {
    background: linear-gradient(135deg, var(--leaf), var(--leaf-light));
}

.contato-method-icon svg {
    width: 24px;
    height: 24px;
}

.contato-method-text strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--candle);
    margin-bottom: 2px;
}

.contato-method-text span {
    font-size: 0.85rem;
    color: rgba(241, 236, 219, 0.6);
}

.contato-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(241, 236, 219, 0.1);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.contato-map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    filter: contrast(1.05) saturate(0.85);
    transition: filter var(--transition-base);
}

.contato-map-wrapper:hover iframe {
    filter: contrast(1) saturate(1);
}

.contato-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 28px;
    background: linear-gradient(transparent, rgba(41, 47, 23, 0.9));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contato-map-overlay span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--candle);
}

.contato-map-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bow);
    color: var(--candle);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    transition: all var(--transition-base);
}

.contato-map-overlay a:hover {
    background: var(--bow-dark);
    transform: translateY(-2px);
}

.contato-map-overlay a svg {
    width: 16px;
    height: 16px;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
    background: var(--warm-wood);
    padding: 48px 0 24px;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo img {
    height: 50px;
    margin: 0 auto 16px;
    filter: brightness(1.5);
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(241, 236, 219, 0.5);
    margin-bottom: 8px;
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: rgba(241, 236, 219, 0.15);
    margin: 16px auto;
    border-radius: 2px;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(241, 236, 219, 0.35);
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    perspective: 600px;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappSpin 6s linear infinite;
    transition: box-shadow var(--transition-base);
    position: relative;
}

.whatsapp-float a:hover {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    animation-play-state: paused;
}

@keyframes whatsappSpin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.whatsapp-float a svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    backface-visibility: hidden;
}

.whatsapp-pulse {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulseBig 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseBig {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .navbar {
        padding: 14px 30px;
    }

    .navbar.scrolled {
        padding: 10px 30px;
    }

    .hero-content {
        padding: 0 30px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 400px;
        height: 50vh;
    }

    .especialista-grid,
    .entrega-layout,
    .clientes-intro,
    .contato-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

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

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

@media (max-width: 768px) {

    html,
    body {
        cursor: auto;
    }

    .custom-cursor,
    .cursor-dot {
        display: none !important;
    }

    .navbar {
        padding: 12px 20px;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(41, 47, 23, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 40px;
        gap: 8px;
        transition: right var(--transition-base);
        align-items: flex-start;
    }

    .navbar-links.active {
        right: 0;
    }

    .navbar-links li a {
        color: var(--candle) !important;
        font-size: 1.1rem;
        padding: 14px 20px;
        width: 100%;
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 0 20px;
        gap: 20px;
        margin-top: 80px; /* Evita ficar por baixo do menu fixo */
    }

    .hero-text {
        margin-bottom: 0;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-image-container {
        width: 100%;
        max-width: 250px;
        height: 35vh;
        margin: 0 auto;
    }

    .hero-image-frame {
        width: 100%;
        height: 100%;
    }

    .hero-image-frame img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .section-container {
        padding: 0 20px;
    }

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

    .depoimentos-group {
        grid-template-columns: 1fr;
    }

    .clientes-types {
        grid-template-columns: 1fr;
    }

    .entrega-stats {
        grid-template-columns: 1fr;
    }

    /* Recolocando os Floating Details no celular como marca d'agua para nao poluir a leitura */
    .floating-detail {
        display: block !important;
        z-index: 0 !important;
        opacity: 0.15 !important;
        transform: scale(0.6);
        pointer-events: none;
    }

    .section-container {
        position: relative;
        z-index: 2; /* Textos sempre em cima dos watermarks */
    }

    /* Transformando a arvore de imagens do especialista numa gradezinha lado a lado elegante */
    .especialista-visual {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 20px;
    }

    .especialista-image-main {
        width: 100%;
        position: relative !important;
        transform: none !important;
    }

    .especialista-image-main img {
        height: 250px;
    }

    .especialista-image-secondary {
        display: block !important;
        position: relative !important;
        width: calc(50% - 5px) !important;
        height: 120px !important;
        bottom: auto !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0 !important;
        border: 3px solid var(--white) !important;
    }

    .especialista-content h2,
    .entrega-text h2,
    .clientes-intro-text h2,
    .contato-info h2 {
        font-size: 2rem;
    }

    .contato-map-wrapper iframe {
        height: 350px;
    }

    .whatsapp-float a {
        width: 56px;
        height: 56px;
    }

    .whatsapp-pulse {
        width: 56px;
        height: 56px;
    }

    #especialista,
    #tomates,
    #clientes {
        padding: 100px 0 120px;
    }

    #entrega,
    #contato {
        padding: 120px 0 140px;
    }
}

@media (max-width: 480px) {
    .navbar-logo img {
        height: 36px;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════
   FLOATING PARTICLES (background ambient)
   ══════════════════════════════════════════════ */
.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(241, 236, 219, 0.15);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* ══════════════════════════════════════════════
   DIAGONAL SECTION ACCENT
   ══════════════════════════════════════════════ */
.diagonal-accent {
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: rgba(126, 38, 37, 0.03);
    transform: skewX(-8deg);
    pointer-events: none;
    z-index: 0;
}