/* ============================================
   ATIVA DISTRIBUIDORA - DESIGN SYSTEM
   Palette: Café Noir #4C3D19 | Kombu Green #354024 
   Moss Green #889063 | Tan #CFBB99 | Bone #E5D7C4
   ============================================ */

/* --- CSS Variables --- */
:root {
    --cafe-noir: #4C3D19;
    --kombu: #354024;
    --moss: #889063;
    --tan: #CFBB99;
    --bone: #E5D7C4;
    --white: #FAFAF7;
    --black: #1a1a14;
    --kombu-light: #44532f;
    --moss-light: #a0a87a;
    --glass-bg: rgba(53, 64, 36, 0.15);
    --glass-border: rgba(207, 187, 153, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 30px rgba(136, 144, 99, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--moss) var(--bone);
    overflow-x: clip;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    color: var(--cafe-noir);
    background: var(--bone);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Custom Cursor --- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--moss);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 2px solid var(--moss);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
    opacity: 0.6;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: var(--tan);
    opacity: 1;
}

/* --- Scroll Progress --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--moss), var(--tan), var(--moss-light));
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
}

/* --- Lucide Fake 3D Icons --- */
.icon-3d {
    filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.25));
    transition: transform var(--transition), filter var(--transition);
}

.icon-3d:hover {
    filter: drop-shadow(2px 4px 3px rgba(0, 0, 0, 0.3));
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 80px;
    /* Altura fixa para a barra */
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(53, 64, 36, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 70px;
    /* Diminui levemente ao rolar */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
    height: 80px;
    min-width: 200px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-45%);
    height: 200px;
    /* Logo agora é independente e pode ser tão grande quanto quiser */
    width: auto;
    transition: all var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    z-index: 100;
}

.navbar.scrolled .nav-logo img {
    height: 200px;
    /* Diminui ao rolar sem afetar a barra */
}

.nav-logo:hover img {
    transform: translateY(-50%) scale(1.05);
}

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

.nav-link {
    color: var(--bone);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--tan);
    transition: all var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--tan);
}

.nav-link.active {
    color: var(--tan);
}

.nav-cta {
    background: linear-gradient(135deg, var(--moss), var(--moss-light)) !important;
    color: var(--white) !important;
    border-radius: var(--radius-md) !important;
    padding: 10px 24px !important;
    box-shadow: 0 4px 15px rgba(136, 144, 99, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 144, 99, 0.5);
}

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

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--bone);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 110vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: clip;
}

.hero-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroBgZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroBgZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(207, 187, 153, 0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

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

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

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

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(207, 187, 153, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(207, 187, 153, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--tan);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.2s both;
}

.hero-badge .icon-3d {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    animation: titleFloat 4s ease-in-out infinite;
}

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

.title-line {
    display: block;
    color: var(--bone);
    animation: fadeInUp 0.8s 0.3s both;
}

.title-accent {
    background: linear-gradient(135deg, var(--tan), var(--moss-light), var(--tan));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s 0.4s both, textGradient 4s ease infinite;
}

@keyframes textGradient {

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

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

.hero-description {
    color: rgba(229, 215, 196, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s 0.5s both;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s 0.6s both;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--tan);
    display: inline;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--tan);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(229, 215, 196, 0.65);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s 0.7s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn .icon-3d {
    width: 18px;
    height: 18px;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
    background: rgba(229, 215, 196, 0.1);
    color: var(--bone);
    border: 1px solid rgba(229, 215, 196, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(229, 215, 196, 0.2);
    transform: translateY(-3px);
}

.btn-light {
    background: linear-gradient(135deg, var(--tan), var(--bone));
    color: var(--kombu);
    box-shadow: 0 4px 20px rgba(207, 187, 153, 0.3);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(207, 187, 153, 0.5);
}

/* Hero Image System Removed */

/* --- Shape Dividers --- */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.shape-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-divider {
    bottom: -1px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.section-autoridade {
    background: var(--bone);
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(136, 144, 99, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(207, 187, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(136, 144, 99, 0.12);
    color: var(--moss);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-tag .icon-3d {
    width: 16px;
    height: 16px;
}

.light-tag {
    background: rgba(229, 215, 196, 0.15);
    color: var(--tan);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--cafe-noir);
    margin-bottom: 16px;
    line-height: 1.2;
}

.light-title {
    color: var(--bone);
}

.text-gradient {
    background: linear-gradient(135deg, var(--moss), var(--kombu));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, var(--tan), var(--moss-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(76, 61, 25, 0.65);
    max-width: 580px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(229, 215, 196, 0.7);
}

/* --- Autoridade Grid --- */
.autoridade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.autoridade-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.autoridade-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.autoridade-card-tall {
    grid-row: span 2;
}

.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.autoridade-card-tall .card-image-wrapper {
    height: 100%;
    min-height: 320px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.autoridade-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(53, 64, 36, 0.6) 100%);
}

.card-content {
    padding: 28px;
    position: relative;
}

.autoridade-card-tall .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--bone);
}

.autoridade-card-tall .card-content h3 {
    color: var(--bone);
}

.autoridade-card-tall .card-content p {
    color: rgba(229, 215, 196, 0.85);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--moss), var(--kombu));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--bone);
    box-shadow: 0 4px 12px rgba(136, 144, 99, 0.25);
}

.card-icon .icon-3d {
    width: 22px;
    height: 22px;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--kombu);
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(76, 61, 25, 0.7);
    line-height: 1.6;
}

/* --- Produtos Section --- */
.section-produtos {
    background: linear-gradient(180deg, var(--kombu) 0%, #2a331c 100%);
    padding-bottom: 160px;
}

.produtos-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.produto-category {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all var(--transition);
}

.produto-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.produto-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.produto-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.produto-category:hover .produto-img-wrapper img {
    transform: scale(1.1);
}

.produto-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(53, 64, 36, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    color: var(--bone);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    border: 1px solid rgba(207, 187, 153, 0.2);
}

.produto-label .icon-3d {
    width: 18px;
    height: 18px;
}

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

/* --- Entrega Section --- */
.section-entrega {
    background: var(--bone);
    padding-bottom: 160px;
}

.entrega-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--moss), var(--tan));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-step:nth-child(even) .step-card {
    margin-left: 0;
    margin-right: auto;
    text-align: right;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--moss), var(--kombu));
    color: var(--bone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(136, 144, 99, 0.3);
    border: 3px solid var(--bone);
}

.step-card {
    width: 42%;
    margin-left: auto;
    padding: 28px;
}

.timeline-step:nth-child(odd) .step-card {
    margin-left: auto;
}

.timeline-step:nth-child(even) .step-card {
    margin-right: auto;
    margin-left: 0;
}

.glass-card {
    background: rgba(136, 144, 99, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(136, 144, 99, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.glass-card:hover {
    background: rgba(136, 144, 99, 0.14);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--moss), var(--kombu));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bone);
    margin-bottom: 16px;
}

.step-icon .icon-3d {
    width: 22px;
    height: 22px;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kombu);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: rgba(76, 61, 25, 0.7);
}

/* Regiões */
.regioes-title,
.clientes-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--kombu);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.regioes-title .icon-3d {
    width: 24px;
    height: 24px;
    color: var(--moss);
}

.regioes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.regiao-card {
    text-align: center;
    padding: 32px 24px;
}

.regiao-card .icon-3d {
    width: 36px;
    height: 36px;
    color: var(--moss);
    margin-bottom: 12px;
}

.regiao-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--kombu);
    margin-bottom: 4px;
}

.regiao-card p {
    font-size: 0.85rem;
    color: rgba(76, 61, 25, 0.6);
}

/* Clientes */
.clientes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cliente-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(136, 144, 99, 0.1);
    border: 1px solid rgba(136, 144, 99, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--kombu);
    transition: all var(--transition);
}

.cliente-tag .icon-3d {
    width: 18px;
    height: 18px;
    color: var(--moss);
}

.cliente-tag:hover {
    background: var(--moss);
    color: var(--bone);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cliente-tag:hover .icon-3d {
    color: var(--bone);
}

/* --- Contato Section --- */
.section-contato {
    background: linear-gradient(180deg, var(--kombu) 0%, #1e2714 100%);
    padding-bottom: 80px;
}

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

.contato-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.glass-card-dark {
    background: rgba(229, 215, 196, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 215, 196, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.glass-card-dark:hover {
    background: rgba(229, 215, 196, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(207, 187, 153, 0.3);
}

.contato-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--moss), var(--moss-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bone);
    margin-bottom: 16px;
}

.contato-icon .icon-3d {
    width: 22px;
    height: 22px;
}

.contato-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bone);
    margin-bottom: 8px;
}

.contato-link {
    color: var(--tan) !important;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
    transition: color var(--transition);
}

a.contato-link:hover {
    color: var(--moss-light) !important;
}

.contato-card p {
    font-size: 0.85rem;
    color: rgba(229, 215, 196, 0.55);
}

.mapa-wrapper {
    height: 100%;
    min-height: 420px;
    padding: 8px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    color: rgba(229, 215, 196, 0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(1.2);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Playfair Display', serif;
    color: var(--bone);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(229, 215, 196, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
}

.whatsapp-pulse {
    position: absolute;
    inset: -8px;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: waPulse 2s ease infinite;
}

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

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

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

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    animation: waRotate 6s linear infinite;
    transition: transform 0.3s;
}

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

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

.whatsapp-icon svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover .whatsapp-icon {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* ============================================
   ANIMATIONS & REVEALS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.85);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        padding: 0 40px;
    }

    .hero-image-frame {
        width: 600px;
        height: 600px;
    }

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

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

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

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo img {
        height: 60px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 60vw;
        object-fit: contain;
    }

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(53, 64, 36, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        padding: 40px;
        transition: right 0.4s ease;
    }

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

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        flex-direction: column;
        padding: 120px 24px 60px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }


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

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

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

    .hero-image-frame {
        width: 380px;
        height: 380px;
        margin-top: 32px;
    }

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

    .autoridade-card-tall {
        grid-row: span 1;
    }

    .produtos-showcase {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 24px;
    }

    .step-number {
        left: 24px;
    }

    .step-card {
        width: calc(100% - 80px);
        margin-left: auto !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .timeline-step:nth-child(even) {
        flex-direction: row;
    }

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

    .contato-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        word-wrap: break-word;
        hyphens: auto;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

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

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

    .hero-image-frame {
        width: 300px;
        height: 300px;
    }

    .shape-divider svg {
        height: 50px;
    }
}