/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #1e5c36;        /* Verde Campo */
    --color-primary-light: #287a48;  /* Verde Claro */
    --color-primary-dark: #143d24;   /* Verde Escuro */
    --color-accent: #ff7a00;         /* Laranja Ativo */
    --color-accent-hover: #e06c00;   /* Laranja Hover */
    --color-dark: #131714;           /* Grafite Escuro */
    --color-dark-light: #1d2420;     /* Grafite Médio */
    --color-light: #f5f8f6;          /* Cinza Claro Verdeado */
    --color-white: #ffffff;          /* Branco Puro */
    
    /* Typography */
    --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --header-height: 114px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-accent: 0 10px 20px -5px rgba(255, 122, 0, 0.3);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    background-image: radial-gradient(circle at 10% 20%, rgba(30, 92, 54, 0.02) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
}

.bg-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--color-white);
}

.bg-light {
    background-color: var(--color-light);
}

/* Grids */
.grid {
    display: grid;
    gap: 32px;
}

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

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

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

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: #575f66; }
.text-white { color: var(--color-white) !important; }
.text-dark { color: var(--color-dark) !important; }
.text-lead { font-size: 1.15rem; font-weight: 500; margin-bottom: 20px; }
.text-sm { font-size: 0.85rem; }
.highlight { color: var(--color-accent); }
.text-accent { color: var(--color-accent) !important; }
.flex { display: flex; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.gap-1 { gap: 12px; }
.gap-2 { gap: 24px; }
.mt-1 { margin-top: 16px; }
.img-responsive { width: 100%; height: auto; display: block; }
.img-rounded { border-radius: var(--border-radius-md); }
.img-shadow { box-shadow: var(--shadow-lg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    gap: 10px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 92, 54, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-dark);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.45);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
}

/* Header fixo / rolado */
.header.scrolled {
    height: 90px;
    background-color: rgba(19, 23, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

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

.logo-link {
    display: block;
}

.logo {
    height: 96px;
    width: auto;
    transition: height var(--transition-normal);
    filter: none;
}

.header.scrolled .logo {
    height: 74px;
    filter: none;
}

.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

.header.scrolled .logo-light {
    display: none;
}

.header.scrolled .logo-dark {
    display: block;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 8px 0;
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-white);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.icon-whatsapp {
    width: 16px;
    height: 16px;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-fast);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .logo {
        height: 70px;
    }

    .header.scrolled .logo {
        height: 56px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-dark);
        padding: 100px 40px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .btn-header {
        display: none; /* Esconde no header desktop, aparece no menu lateral */
    }
    
    /* Hamburger animado */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 22, 20, 0.8), rgba(18, 22, 20, 0.95));
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero::before {
        background: linear-gradient(to bottom, rgba(18, 22, 20, 0.85), rgba(18, 22, 20, 0.98));
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    padding-top: var(--header-height);
}

.hero-logo {
    width: 100%;
    max-width: 580px;
    height: auto;
    margin-bottom: 0;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.45));
}

.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast), transform var(--transition-fast);
    animation: arrowBounce 2s infinite;
}

.scroll-down-arrow svg {
    width: 36px;
    height: 36px;
}

.scroll-down-arrow:hover {
    color: var(--color-accent);
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

.hero-tag {
    display: inline-block;
    background-color: rgba(30, 92, 54, 0.4);
    border: 1px solid rgba(40, 122, 72, 0.5);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #a3e2bc;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-slogan {
        font-size: 1.2rem;
    }
}

/* Botoes removidos da Hero */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 16px;
        margin-top: 60px;
    }
    .stat-num {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-header {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.section-desc {
    font-size: 1.05rem;
}

/* ==========================================================================
   QUEM SOMOS SECTION
   ========================================================================== */
.quem-somos-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quem-somos-content p {
    margin-bottom: 16px;
    color: #495057;
}

.benefits-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.benefit-icon {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.quem-somos-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper-decorative {
    position: relative;
    width: 100%;
}

.image-wrapper-decorative::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--color-primary);
    border-left: 4px solid var(--color-primary);
    z-index: -1;
}

.image-wrapper-decorative::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-bottom: 4px solid var(--color-accent);
    border-right: 4px solid var(--color-accent);
    z-index: -1;
}

/* ==========================================================================
   CARDS / SERVIÇOS
   ========================================================================== */
.card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 92, 54, 0.15);
}

.card-icon-container {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(30, 92, 54, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-fast);
}

.card:hover .card-icon-container {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card p {
    font-size: 0.95rem;
    color: #575f66;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
}

.card-link:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   LOCAÇÃO SECTION
   ========================================================================== */
.locacao {
    background-image: radial-gradient(circle at 80% 20%, rgba(30, 92, 54, 0.12) 0%, transparent 50%);
}

.subtitle-highlight {
    font-size: 1.5rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.subtitle-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

.structure-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.structure-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 20px;
}

.structure-list li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

.business-hours {
    background-color: var(--color-dark-light);
    border-left: 4px solid var(--color-primary-light);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 32px;
}

.business-hours h4 {
    color: var(--color-white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.locacao-image-grid {
    position: relative;
}

.locacao-image-grid::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary-light);
    border-radius: var(--border-radius-md);
    z-index: -1;
}

/* ==========================================================================
   PRODUTOS SECTION
   ========================================================================== */
.product-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 92, 54, 0.1);
}

.product-image-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-badge {
    align-self: flex-start;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.product-details h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.product-details p {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ==========================================================================
   PORTFÓLIO SECTION
   ========================================================================== */
.portfolio-filters {
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    background-color: var(--color-dark-light);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.portfolio-grid {
    position: relative;
}

.portfolio-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: block;
}

.portfolio-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(19, 23, 20, 0.9) 0%, rgba(19, 23, 20, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-overlay h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

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

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

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 120px 0;
    position: relative;
}

.cta-section .section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-desc {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .cta-section .section-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   CONTATO & MAPA
   ========================================================================== */
.contato-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.contact-details-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-card-icon {
    font-size: 1.8rem;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-card p {
    color: #495057;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--color-primary);
}

.social-networks h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all var(--transition-fast);
}

.social-btn:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}

.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285aeb 90%);
}

.social-btn.facebook:hover {
    background-color: #3b5998;
}

.contato-map {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contato-map {
        height: 300px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.logo-footer {
    height: 90px;
    margin-bottom: 16px;
    filter: none;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 400px;
}

.footer-links h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-legal {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}

.footer-legal a:hover {
    color: var(--color-accent) !important;
}

/* ==========================================================================
   MICRO-ANIMATIONS & FLOATING ELEMENT
   ========================================================================== */
/* Floating WhatsApp Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-fast);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.icon-whatsapp-floating {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .icon-whatsapp-floating {
        width: 26px;
        height: 26px;
    }
}

/* Pulsing Effect (Composta por Hardware GPU) */
.whatsapp-floating-btn.pulse {
    position: relative;
}

.whatsapp-floating-btn.pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    animation: pulseWhatsApp 2s infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulseWhatsApp {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ==========================================================================
   SCROLL REVEAL (INTERSECTION OBSERVER)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
