/* ===================================
   CSS Variables
   =================================== */
:root {
    --primary: #3b82f6;
    --primary-dark: #3A5FD9;
    --primary-light: #6B94FF;
    --secondary: #1F2937;
    --text-primary: #1a1a1a;
    --text-secondary: #6B7280;
    --text-light: #666666;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #111827;
    --border: #E5E7EB;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Work Sans', sans-serif;
    --container-width: 1200px;
    --section-padding: 100px 0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===================================
   Utilities
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

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

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

.btn-link {
    display: inline-block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    transition: var(--transition);
}
.btn-link:hover { color: var(--primary); }

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.navbar { padding: 16px 0; }

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; align-items: center; max-height: 120px; }

.logo-img {
    height: 90px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    padding: 5px 0;
    transition: var(--transition);
}
.header.scrolled .logo-img { height: 55px; }

.nav-menu { display: flex; align-items: center; gap: 48px; }
.nav-links { display: flex; gap: 32px; }

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-icon { width: 16px; height: 16px; margin-left: 4px; transition: var(--transition); }
.dropdown:hover .dropdown-icon { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%; left: 0;
    min-width: 200px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: var(--text-primary);
    transition: var(--transition);
}
.dropdown-item:hover { background: var(--bg-secondary); color: var(--primary); }

.nav-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}
.contact-icon { width: 24px; height: 24px; color: var(--primary); }
.contact-info { display: flex; flex-direction: column; }
.contact-label { font-size: 12px; color: var(--text-secondary); }
.contact-number { font-weight: 600; color: var(--text-primary); }

.mobile-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); }

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: #000;
}

.hero-slideshow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-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.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content { max-width: 900px; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 60px;
}
.hero-title span { display: block; }

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-destaque-box {
    position: relative;
    transition: transform 0.3s ease;
}
.hero-destaque-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2) !important;
}

/* ===================================
   Feature Cards
   =================================== */
.feature-cards-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding-bottom: 60px;
}

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-icon { width: 64px; height: 64px; margin-bottom: 24px; color: var(--primary); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-title { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.feature-description { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 20px; }
.feature-progress { height: 4px; background: var(--primary); border-radius: 2px; width: 100%; }

/* ===================================
   About Section
   =================================== */
.about-section { padding: var(--section-padding); background: var(--bg-secondary); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-content { max-width: 540px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-icon { width: 48px; height: 48px; color: var(--primary); }
.stat-icon svg { width: 100%; height: 100%; }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-secondary); }

.about-media { position: relative; }

.video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    color: var(--primary);
    transition: var(--transition);
}
.play-button:hover { transform: translate(-50%, -50%) scale(1.1); }
.play-button svg { width: 100%; height: 100%; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)); }

/* ===================================
   Services Section
   =================================== */
.services-section { padding: var(--section-padding); background: var(--bg-primary); }

.section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 60px;
}
.section-header-content { max-width: 600px; }
.section-header .section-description { margin-bottom: 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-bottom: 6px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-bottom-width: 10px;
}

.service-icon { width: 50px; height: 50px; margin-bottom: 24px; color: var(--primary); }
.service-icon svg { width: 100%; height: 100%; }
.service-title { font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.service-description { font-size: 16px; line-height: 1.7; color: var(--text-secondary); }

/* ===================================
   Expertise Section
   =================================== */
.expertise-section { padding: var(--section-padding); background: var(--bg-secondary); }

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.expertise-media { position: relative; }

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.image-frame::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: 20px; bottom: 20px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.expertise-image { width: 100%; height: 500px; object-fit: cover; }
.expertise-content { max-width: 540px; }

.skill-bars { margin-top: 40px; }
.skill-item { margin-bottom: 32px; }
.skill-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.skill-name { font-weight: 600; color: var(--text-primary); }
.skill-percentage { font-weight: 700; color: var(--primary); }
.skill-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.skill-progress { height: 100%; background: var(--primary); border-radius: 4px; transition: width 1s ease-in-out; }

.partners-section { padding: 60px 0; background: white; border-radius: var(--radius-xl); margin-top: 60px; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; align-items: center; }
.partner-logo { text-align: center; opacity: 0.6; transition: var(--transition); }
.partner-logo:hover { opacity: 1; }
.logo-text { font-weight: 700; font-size: 18px; color: var(--text-primary); }

/* ===================================
   Team Section
   =================================== */
.team-section { padding: var(--section-padding); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.team-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.team-image { position: relative; height: 350px; overflow: hidden; }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-info { padding: 24px; text-align: center; }
.team-name { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.team-role { font-size: 14px; color: var(--text-secondary); }

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section { padding: 60px 0; background: var(--bg-dark); }

.newsletter-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 48px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.newsletter-icon { width: 64px; height: 64px; color: var(--primary); }
.newsletter-icon svg { width: 100%; height: 100%; }
.newsletter-title { font-size: 24px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.newsletter-description { font-size: 15px; color: var(--text-secondary); }

.newsletter-form { display: flex; gap: 12px; }
.newsletter-input { flex: 1; padding: 16px 24px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 16px; transition: var(--transition); }
.newsletter-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.1); }

.form-message { margin-top: 12px; padding: 12px; border-radius: var(--radius-sm); font-size: 14px; text-align: center; display: none; }
.form-message.success { background: #DEF7EC; color: #03543F; display: block; }
.form-message.error { background: #FDE8E8; color: #9B1C1C; display: block; }

/* ===================================
   Footer
   =================================== */
.footer { background: var(--bg-dark); color: white; padding: 80px 0 32px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo { display: flex; align-items: center; gap: 12px; font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.footer-logo svg { width: 40px; height: 40px; }
.footer-logo-img { height: 120px; width: auto; }
.footer-description { color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin-bottom: 24px; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.8); }
.footer-contact-item svg { width: 20px; height: 20px; color: var(--primary); }
.footer-heading { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 8px; }
.work-hours { color: rgba(255, 255, 255, 0.8); }
.work-hours-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.work-hours-item svg { width: 24px; height: 24px; color: var(--primary); }
.work-hours-description { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.footer-link { color: var(--primary); transition: var(--transition); }
.footer-link:hover { color: var(--primary-light); }

/* ===================================
   Animations
   =================================== */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-slide-up { animation: slideUp 0.6s ease-out forwards; opacity: 0; }
.animate-fade-in { animation: fadeIn 0.6s 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; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* ===================================
   Responsive — 1024px
   =================================== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 72px; left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        padding: 32px;
        transition: var(--transition);
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .nav-links { flex-direction: column; width: 100%; }
    .mobile-toggle { display: flex; }

    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; max-height: 0; overflow: hidden; }
    .dropdown.active .dropdown-menu { max-height: 300px; }

    .newsletter-card { grid-template-columns: 1fr; text-align: center; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===================================
   Responsive — 768px
   =================================== */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        align-items: flex-start;
        min-height: 80svh;
    }
    .hero-content { padding-top: 20px; }
    .hero-title { font-size: clamp(28px, 7vw, 42px); }
    .hero-destaque-box { flex-direction: row !important; max-width: 100% !important; margin-top: 20px !important; }

    .section-title { font-size: 32px; }
    .section-header { flex-direction: column; align-items: flex-start; }

    .stats-grid { grid-template-columns: 1fr; }
    .about-grid, .expertise-grid { grid-template-columns: 1fr; }
    .feature-cards { grid-template-columns: 1fr; }
    .feature-cards-wrapper { margin-top: -40px; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
}

/* ===================================
   Responsive — 480px
   =================================== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn { padding: 12px 24px; font-size: 14px; }
    .section-title { font-size: 28px; }
    .hero-title { font-size: 32px; }
    .newsletter-card { padding: 24px; }
}
/* Ajustes para Telas Pequenas (Mobile) */
@media (max-width: 768px) {
    .footer-section {
        text-align: center !important; /* Centraliza os textos */
    }

    .footer-contact-item {
        justify-content: center !important; /* Centraliza os ícones com o texto */
        text-align: left; /* Mantém o alinhamento do texto interno para leitura */
        margin: 0 auto 20px !important;
        max-width: 280px; /* Evita que o endereço espalhe muito */
    }

    .btn-footer-more {
        margin: 0 auto 30px !important; /* Centraliza o botão 'Saiba mais' */
        display: table !important; /* Garante a centralização correta */
    }
}
/* AJUSTES PARA O HEADER MOBILE */
@media (max-width: 1024px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }

    /* Redimensiona o logo no mobile para não ocupar altura excessiva */
    .logo-img {
        height: 50px !important;
        width: auto;
    }

    /* Esconde o texto "Atendimento" e deixa apenas o número ou ícone no mobile */
    .contact-label {
        display: none;
    }

    .nav-contact {
        margin-left: auto;
        margin-right: 15px;
        padding: 8px;
        background: #f0f7ff;
        border-radius: 50px;
    }

    /* Garante que o menu hambúrguer fique visível e alinhado */
    .mobile-toggle {
        display: block !important;
        order: 3;
    }
}

/* Estilo do Menu Aberto (Overlay) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px; /* Altura do seu header */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .nav-link {
        font-size: 20px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
@media (max-width: 768px) {
    /* Garante que o container ocupe a largura total com respiro nas laterais */
    .nav-wrapper {
        padding: 0 15px !important;
    }

    /* Aumenta a logo no mobile para ela ficar legível como no seu print anterior */
    .logo {
        width: 120px !important;
    }

    /* Esconde o bloco de contato (Telefone) no mobile para dar espaço ao menu */
    .nav-contact {
        display: none !important;
    }

    /* Força o botão de menu a aparecer (caso o CSS antigo estivesse escondendo) */
    .mobile-toggle {
        display: flex !important;
    }
    /* 1. ESCONDE O HAMBÚRGUER POR PADRÃO (DESKTOP) */
.mobile-toggle {
    display: none !important;
}

/* 2. REGRAS PARA TELAS MENORES (TABLETS E CELULARES) */
@media (max-width: 1024px) {
    /* Mostra o hambúrguer apenas aqui */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Esconde os links horizontais para não encavalar com o hambúrguer */
    .nav-links {
        display: none;
    }

    /* Esconde o bloco de atendimento se o espaço for muito curto */
    .nav-contact {
        display: none;
    }
@media (max-width: 1024px) {
    /* Esconde o menu lateralmente por padrão */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Começa fora da tela */
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex !important; /* Força o display flex para os itens internos */
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
    }

    /* Quando clicado, ele entra na tela */
    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        color: var(--text-dark) !important;
        font-size: 18px;
        font-weight: 600;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
}

