@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ===== VARIÁVEIS CSS ===== */
:root {
    --preto: #0A0A0A;
    --verde-neon: #00FF84;
    --cinza-claro: #EDEDED;
    --branco: #FFFFFF;
    --azul-petroleo: #0F4C81;
    --cinza-escuro: #1a1a1a;
    --azul-hover: #1a5c9c;
    --transition-speed: 0.3s;
}

/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--preto);
    color: var(--cinza-claro);
    display: flex;
    min-height: 100vh;
    font-weight: 400;
    overflow-x: hidden;
}

/* ===== BURGER MENU ===== */
.burger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-speed) ease;
    background: rgba(10, 10, 10, 0.9);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--azul-petroleo);
}

.burger-line {
    width: 100%;
    height: 3px;
    background: var(--verde-neon);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
    transform-origin: left;
}

.burger-menu:hover .burger-line {
    background: var(--branco);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg);
}

/* ===== OVERLAY ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(2px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--preto) 0%, var(--cinza-escuro) 100%);
    padding: 25px 20px;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4);
    border-right: 2px solid var(--azul-petroleo);
    z-index: 999;
    transition: transform var(--transition-speed) ease;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--azul-petroleo);
    position: relative;
}

.sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--verde-neon);
}

.logo {
    text-align: left;
}

.logo h1 {
    color: var(--verde-neon);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.logo span {
    color: var(--branco);
}

.logo p {
    color: var(--cinza-claro);
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--cinza-claro);
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all var(--transition-speed) ease;
    display: none;
}

.close-sidebar:hover {
    color: var(--verde-neon);
    background: rgba(255, 255, 255, 0.1);
}

.close-icon {
    width: 24px;
    height: 24px;
}

/* ===== NAVEGAÇÃO ===== */
.nav-links {
    list-style: none;
    margin-bottom: 30px;
}

.nav-links li {
    margin-bottom: 8px;
    position: relative;
}

.nav-links li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--verde-neon);
    border-radius: 2px;
    transition: height var(--transition-speed) ease;
}

.nav-links li:hover::before {
    height: 20px;
}

.nav-links a {
    color: var(--cinza-claro);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
    gap: 12px;
    font-weight: 400;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.nav-links a:hover {
    background: var(--azul-petroleo);
    color: var(--branco);
    border-color: var(--verde-neon);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 255, 132, 0.1);
}

.nav-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-speed) ease;
}

.nav-links a:hover .nav-icon {
    transform: scale(1.1);
}

/* ===== SEÇÃO DE NOTÍCIAS ===== */
.news-sidebar {
    background: rgba(15, 76, 129, 0.1);
    border: 1px solid var(--azul-petroleo);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.news-sidebar h3 {
    color: var(--verde-neon);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-list {
    list-style: none;
}

.news-list li {
    margin-bottom: 8px;
}

.news-list li:last-child {
    margin-bottom: 0;
}

.news-list a {
    color: var(--cinza-claro);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 6px;
    transition: all var(--transition-speed) ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.news-list a:hover {
    background: var(--azul-petroleo);
    color: var(--branco);
    border-color: var(--verde-neon);
    transform: translateX(3px);
}

.news-title {
    font-size: 0.9rem;
    font-weight: 400;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: transform var(--transition-speed) ease;
}

.news-list a:hover .arrow-icon {
    transform: translateX(3px);
    opacity: 1;
}

/* ===== SCROLLBAR ===== */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--preto);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--azul-petroleo);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--verde-neon);
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.main-content {
    margin-left: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: calc(100% - 280px);
    transition: margin-left var(--transition-speed) ease, width var(--transition-speed) ease;
}

/* ===== BANNER SLIDE ===== */
.banner-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.banner-slide {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform var(--transition-speed) ease-in-out;
}

.banner {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    position: relative;
    opacity: 0;
    transition: opacity var(--transition-speed) ease-in-out;
}

.banner.active {
    opacity: 1;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.6));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.banner.active .banner-content {
    transform: translateY(0);
    opacity: 1;
}

.banner-content h2 {
    color: var(--verde-neon);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.banner-content p {
    color: var(--cinza-claro);
    font-size: 1.3rem;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.banner1 { 
    background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center;
}
.banner2 { 
    background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center;
}
.banner3 { 
    background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1115&q=80') no-repeat center center;
}

/* ===== CONTROLES DO BANNER ===== */
.banner-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 10;
}

.banner-indicators {
    display: flex;
    gap: 12px;
    order: 2;
}

.banner-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.banner-indicator.active {
    background-color: var(--verde-neon);
    transform: scale(1.3);
    border-color: var(--branco);
}

.banner-nav {
    display: flex;
    gap: 15px;
    order: 1;
}

.banner-actions {
    order: 3;
}

.banner-btn {
    background: rgba(15, 76, 129, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--cinza-claro);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.banner-btn:hover {
    background: var(--azul-petroleo);
    color: var(--verde-neon);
    transform: scale(1.1);
    border-color: var(--verde-neon);
}

/* ===== BOTÃO DE CHAMADA PARA AÇÃO ===== */
.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: transparent;
    color: var(--verde-neon);
    border: 2px solid var(--verde-neon);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--verde-neon), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--preto);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 132, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--verde-neon);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.cta-button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== CONTADOR DE SLIDES ===== */
.slide-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--cinza-claro);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
    border: 1px solid var(--azul-petroleo);
    backdrop-filter: blur(10px);
}

/* ===== BARRA DE PROGRESSO ===== */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-fill {
    height: 100%;
    background: var(--verde-neon);
    width: 0%;
    transition: width 0.1s linear;
}

/* ===== CARDS DE SERVIÇOS ===== */
.services {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--verde-neon);
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--verde-neon);
    border-radius: 2px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--preto);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--azul-petroleo);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 255, 132, 0.2);
    border-color: var(--verde-neon);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    width: 70px;
    height: 70px;
    color: var(--verde-neon);
    background: rgba(10, 10, 10, 0.9);
    padding: 18px;
    border-radius: 50%;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    color: var(--verde-neon);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.3rem;
}

.card p {
    color: var(--cinza-claro);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 1rem;
}

.card-icon-small {
    width: 22px;
    height: 22px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--verde-neon);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    padding: 12px 24px;
    border: 2px solid var(--verde-neon);
    border-radius: 8px;
    align-self: flex-start;
    margin-top: auto;
    font-size: 1rem;
}

.card-link:hover {
    background-color: var(--verde-neon);
    color: var(--preto);
    transform: translateX(5px);
}

.card-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-speed) ease;
}

.card-link:hover .card-arrow {
    transform: translateX(5px);
}

/* Classes para as imagens específicas */
.card:nth-child(1) .card-img {
    background-image: url('/public/assets/img/codes.avif');
}

.card:nth-child(2) .card-img {
    background-image: url('/public/assets/img/manutenção.avif');
}

.card:nth-child(3) .card-img {
    background-image: url('/public/assets/img/marketing.avif');
}

.card:nth-child(4) .card-img {
    background-image: url('/public/assets/img/design.avif');
}

/* Fallback caso as imagens não carreguem */
.card-img {
    background-color: var(--cinza-escuro);
}

/* ===== FOOTER ===== */
footer {
    background: var(--preto);
    padding: 60px 20px 30px;
    margin-top: auto;
    border-top: 2px solid var(--azul-petroleo);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--verde-neon);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--cinza-claro);
    font-weight: 400;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-icon {
    width: 26px;
    height: 26px;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--verde-neon);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--cinza-claro);
    transition: all var(--transition-speed) ease;
    padding: 10px;
    border-radius: 8px;
    background: var(--azul-petroleo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--preto);
    background: var(--verde-neon);
    transform: translateY(-3px);
}

.social-icon {
    width: 22px;
    height: 22px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--azul-petroleo);
    color: var(--cinza-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 400;
    font-size: 1rem;
}

/* ===== RESPONSIVIDADE OTIMIZADA ===== */

/* 1400px para cima - Telas Extra Grandes */
@media (min-width: 1400px) {
    .sidebar {
        width: 320px;
    }
    
    .main-content {
        margin-left: 320px;
        width: calc(100% - 320px);
    }
    
    .banner-container {
        height: 600px;
    }
    
    .banner-content h2 {
        font-size: 3.5rem;
    }
    
    .banner-content p {
        font-size: 1.5rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }
}

/* 1200px a 1399px - Telas Grandes */
@media (min-width: 1200px) and (max-width: 1399px) {
    .sidebar {
        width: 300px;
    }
    
    .main-content {
        margin-left: 300px;
        width: calc(100% - 300px);
    }
    
    .banner-container {
        height: 550px;
    }
    
    .banner-content h2 {
        font-size: 3.2rem;
    }
}

/* 992px a 1199px - Desktop Médio */
@media (min-width: 992px) and (max-width: 1199px) {
    .sidebar {
        width: 280px;
    }
    
    .main-content {
        margin-left: 280px;
        width: calc(100% - 280px);
    }
    
    .banner-container {
        height: 500px;
    }
    
    .banner-content h2 {
        font-size: 2.8rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

/* 768px a 991px - Tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .burger-menu {
        display: flex;
    }

    .close-sidebar {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 300px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .banner-container {
        height: 450px;
    }
    
    .banner-content h2 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .banner-controls {
        padding: 0 30px;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .services {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 576px a 767px - Tablets Pequenos */
@media (min-width: 576px) and (max-width: 767px) {
    .sidebar {
        width: 100%;
        padding: 20px 15px;
    }

    .burger-menu {
        top: 15px;
        left: 15px;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .nav-links li {
        margin-bottom: 0;
    }
    
    .nav-links li::before {
        display: none;
    }
    
    .nav-links a {
        padding: 15px 12px;
        font-size: 0.9rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-links a:hover {
        transform: translateY(-3px);
    }

    .news-sidebar {
        padding: 15px;
    }

    .news-sidebar h3 {
        font-size: 1rem;
    }

    .news-title {
        font-size: 0.9rem;
    }
    
    .banner-container {
        height: 400px;
    }
    
    .banner-content h2 {
        font-size: 2.2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .banner-controls {
        padding: 0 20px;
        bottom: 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-nav {
        order: 2;
    }
    
    .banner-indicators {
        order: 1;
    }
    
    .banner-actions {
        order: 3;
    }
    
    .banner-btn {
        width: 45px;
        height: 45px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .slide-counter {
        top: 20px;
        right: 20px;
        font-size: 0.9rem;
    }
    
    .services {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .card-img {
        height: 180px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-section h3 {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* 480px a 575px - Mobile Large */
@media (min-width: 480px) and (max-width: 575px) {
    body {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        max-height: 80vh;
        position: fixed;
        top: 0;
        left: 0;
        padding: 20px 15px;
        border-right: none;
        border-bottom: 2px solid var(--azul-petroleo);
        z-index: 1000;
    }
    
    .burger-menu {
        top: 15px;
        left: 15px;
    }
    
    .logo {
        text-align: center;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .nav-links li {
        margin-bottom: 0;
    }
    
    .nav-links li::before {
        display: none;
    }
    
    .nav-links a {
        padding: 12px 8px;
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 6px;
    }
    
    .nav-links a:hover {
        transform: translateY(-3px);
    }
    
    .news-sidebar {
        padding: 12px;
        margin-top: 15px;
    }
    
    .news-sidebar h3 {
        font-size: 1rem;
        justify-content: center;
    }
    
    .news-list a {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        margin-top: 70px;
    }
    
    .banner-container {
        height: 350px;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .banner-content p {
        font-size: 0.95rem;
    }
    
    .banner-controls {
        padding: 0 15px;
        bottom: 15px;
    }
    
    .slide-counter {
        top: 15px;
        right: 15px;
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .services {
        padding: 35px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-img {
        height: 160px;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        padding: 14px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .card-link {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    footer {
        padding: 40px 15px 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright {
        margin-top: 35px;
        padding-top: 20px;
        flex-direction: column;
        gap: 8px;
        font-size: 0.9rem;
    }
}

/* 360px a 479px - Mobile Médio */
@media (min-width: 360px) and (max-width: 479px) {
    .sidebar {
        padding: 15px 10px;
        max-height: 85vh;
    }
    
    .burger-menu {
        top: 12px;
        left: 12px;
        width: 28px;
        height: 22px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .nav-links a {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .news-list a {
        padding: 6px 0;
        font-size: 0.8rem;
    }
    
    .banner-container {
        height: 300px;
    }
    
    .banner-content h2 {
        font-size: 1.6rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .banner-controls {
        padding: 0 12px;
        bottom: 12px;
        gap: 15px;
    }
    
    .banner-btn {
        width: 40px;
        height: 40px;
    }
    
    .banner-indicator {
        width: 12px;
        height: 12px;
    }
    
    .cta-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .slide-counter {
        top: 12px;
        right: 12px;
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .services {
        padding: 30px 12px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .card-img {
        height: 140px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .card-content {
        padding: 18px;
    }
    
    .card h3 {
        font-size: 1.1rem;
    }
    
    .card p {
        font-size: 0.9rem;
    }
}

/* 320px a 359px - Mobile Pequeno */
@media (max-width: 359px) {
    .sidebar {
        padding: 12px 8px;
    }
    
    .burger-menu {
        top: 10px;
        left: 10px;
        width: 25px;
        height: 20px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo p {
        font-size: 0.8rem;
    }
    
    .nav-links a {
        padding: 8px 6px;
        font-size: 0.75rem;
    }
    
    .news-sidebar h3 {
        font-size: 0.9rem;
    }
    
    .news-list a {
        padding: 5px 0;
        font-size: 0.75rem;
    }
    
    .banner-container {
        height: 250px;
    }
    
    .banner-content h2 {
        font-size: 1.4rem;
    }
    
    .banner-content p {
        font-size: 0.8rem;
    }
    
    .banner-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .banner-btn {
        width: 35px;
        height: 35px;
    }
    
    .banner-indicator {
        width: 10px;
        height: 10px;
    }
    
    .cta-button {
        padding: 6px 18px;
        font-size: 0.8rem;
    }
    
    .services {
        padding: 25px 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .card-img {
        height: 120px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        padding: 10px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card h3 {
        font-size: 1rem;
    }
    
    .card p {
        font-size: 0.85rem;
    }
    
    .card-link {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    footer {
        padding: 30px 10px 20px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .banner-slide {
        transition: none;
    }
    
    .banner,
    .banner-content,
    .cta-button,
    .banner-btn {
        transition: none;
    }
}

/* ===== ESTILOS PARA FOCUS ===== */
.burger-menu:focus,
.close-sidebar:focus,
.banner-btn:focus,
.banner-indicator:focus,
.cta-button:focus,
.card-link:focus,
.nav-links a:focus,
.news-list a:focus {
    outline: 2px solid var(--verde-neon);
    outline-offset: 2px;
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Ajustes para quando a sidebar está aberta em mobile */
@media (max-width: 991px) {
    body.sidebar-open {
        overflow: hidden;
    }
}