:root {
    /* Nova Paleta */
    --primary: #C7FFE1;
    --primary-light: #D9FFEB;
    --primary-dark: #9FE8C3;
    --accent: #7BE0AE;
    --accent-light: #E8FFF3;

    --white: #FFFFFF;
    --off-white: #FAFAFA;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --success: #10B981;
    --error: #EF4444;
    
    /* Variáveis de fonte */
    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 36px rgba(0,0,0,0.15);
    --shadow-2xl: 0 20px 50px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animações */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Header */
.header {
    background: #FFFFFF;
    border-bottom: 3px solid #C7FFE1;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: #7BE0AE;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    transition: none;
}

.logo:hover {
    background-color: transparent !important;
    filter: none;
    transform: none;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-text span {
    color: #7BE0AE;
    font-size: 2rem;
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.nav a:hover {
    color: #059669;
    background: #E8FFF3;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    width: 0;
    height: 2px;
    background: #7BE0AE;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: calc(100% - 1.5rem);
}

/* ============ MENU HAMBURGUER ============ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #374151;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay do menu mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Menu mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-menu a:hover {
    background: #E8FFF3;
    color: #059669;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ============ CARROSSEL HERO ============ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
    animation: zoomPulse 8s ease-in-out infinite;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #059669;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 2px solid #059669;
    letter-spacing: 0.03em;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-accent {
    color: #047857;
    text-decoration: underline;
    text-decoration-color: #7BE0AE;
    text-underline-offset: 8px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-cta .btn {
    flex: 1;
    min-width: 140px;
    max-width: 190px;
    padding: 14px 10px;
    font-size: .95rem;
}

/* Indicadores do carrossel */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 6;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: #7BE0AE;
    border-color: #7BE0AE;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(123, 224, 174, 0.6);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--white);
}

/* Setas de navegação */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.prev { left: 1.5rem; }
.carousel-arrow.next { right: 1.5rem; }

/* ============ BOTÕES ============ */
.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: #059669;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    border: 2px solid #059669;
}

.btn-primary:hover {
    background: #047857;
    border-color: #047857;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #059669;
    border: 2px solid #FFFFFF;
    font-weight: 700;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #047857;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ============ STATS SECTION ============ */
.stats {
    background: var(--white);
    padding: 3rem 2rem;
    margin-top: -3.5rem;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: #059669;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
}

/* ============ SECTION STYLES ============ */
section {
    padding: 6rem 2rem;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: var(--accent-light);
    color: #059669;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ============ CARDS GRID ============ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #7BE0AE;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7BE0AE 0%, #C7FFE1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============ SOBRE COM IMAGEM ============ */
.sobre-section {
    background: var(--white);
    position: relative;
}

.sobre-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-image-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.sobre-image-wrapper:hover img {
    transform: scale(1.03);
}

.sobre-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(5, 150, 105, 0.9));
    padding: 2rem;
    color: var(--white);
    text-align: center;
}

.sobre-image-overlay p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ============ DIFERENCIAIS SECTION ============ */
.diferenciais {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diferencial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #7BE0AE;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.diferencial-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.diferencial-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.diferencial-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ CONVENIOS / PARCEIROS ============ */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 1.8rem;
}

.logo-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    box-shadow: var(--shadow-sm);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.logo-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.logo-img img {
    max-width: 100%;
    height: 50px;
    object-fit: contain;
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-fallback .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.logo-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
}

/* ============ PARALLAX DIVIDER ============ */
.parallax-divider {
    height: 350px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 150, 105, 0.8);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.parallax-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.parallax-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============ TRABALHE CONOSCO ============ */
.trabalhe-conosco {
    background: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: var(--error);
    margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7BE0AE;
    box-shadow: 0 0 0 3px rgba(123, 224, 174, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 2px dashed #7BE0AE;
    border-radius: 12px;
    background: var(--accent-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-upload-label:hover {
    border-color: #059669;
    background: #D9FFEB;
}

.file-upload-text strong {
    color: #059669;
    display: block;
    margin-bottom: 0.25rem;
}

.file-upload-text small {
    color: var(--gray-500);
    font-size: 0.875rem;
}

#resume {
    display: none;
}

#fileName {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--gray-700);
    text-align: center;
}

.form-message {
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

/* ============ OUVIDORIA MESSAGE ============ */
.ouvidoria-message {
    display: none;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.ouvidoria-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 2px solid #10B981;
}

.ouvidoria-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 2px solid #EF4444;
}

/* ============ MODAL DE SUCESSO ============ */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.success-modal.show {
    display: flex;
}

.success-modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-2xl);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.success-modal-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.success-modal-content p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-modal-content .btn {
    margin: 0 auto;
    max-width: 200px;
}

.success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gray-100);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

/* ============ CONTATO COM IMAGEM ============ */
.contato-section {
    background: var(--gray-50);
    position: relative;
}

.contato-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.contato-image-col img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.contato-image-col img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #7BE0AE;
}

.footer-section p,
.footer-section a {
    color: var(--gray-300);
    line-height: 1.8;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: #7BE0AE;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* ============ COOKIE POPUP ============ */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    z-index: 10000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.cookie-popup p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-popup a {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #059669;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: var(--font-body);
}

.cookie-btn-accept {
    background: #059669;
    color: var(--white);
    flex: 1;
}

.cookie-btn-accept:hover {
    background: #047857;
}

.cookie-btn-reject {
    background: var(--gray-200);
    color: var(--gray-700);
}

.cookie-btn-reject:hover {
    background: var(--gray-300);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #059669;
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #047857;
    transform: translateY(-4px);
}

/* ============ MODAL LGPD ============ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gray-900);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: none;
    padding-left: 0;
}

.modal-body li {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.modal-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .hero-carousel { height: 550px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .carousel-arrow { width: 38px; height: 38px; font-size: 1rem; }
    .carousel-arrow.prev { left: 0.5rem; }
    .carousel-arrow.next { right: 0.5rem; }
    .section-title { font-size: 2rem; }
    .stats-container { padding: 2rem; gap: 2rem; }
    .stat-number { font-size: 2.5rem; }
    section { padding: 4rem 1.5rem; }
    .form-container { padding: 2rem; }
    .cookie-popup { left: 1rem; right: 1rem; }
    .parallax-divider { height: 280px; background-attachment: scroll; }
    .contato-image-row { grid-template-columns: 1fr; }
    .contato-image-col img { height: 280px; }
    .logo-img { height: 40px; }
    .logo-text { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .hero-carousel { height: 480px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.9rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .carousel-arrow { display: none; }
}