:root {
    --header-height: 79px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #dc2626;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #f8f9fa;
}

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

.nav-link.active {
    color: #ffffff;
    font-weight: 700; /* Negrito para aba ativa */
}

.nav-link.active::after {
    width: 100%;
    background-color: #dc2626; /* Sublinhado vermelho */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.btn-account {
    background-color: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-account:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu i {
    display: flex;
    justify-content: space-between;
    width: 24px;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 72px; /* Altura do header */
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #1e293b; /* Azul escuro */
    z-index: 999;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.mobile-nav.active {
    height: 100vh;
    overflow-y: auto;
}

.mobile-nav-link {
    color: white;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav.active .mobile-nav-link:nth-child(6) { transition-delay: 0.6s; }

.mobile-nav-link:hover {
    padding-left: 10px;
    color: #dc2626;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 0; /* Removido padding para controle total */
    overflow: hidden;
    height: calc(100vh - var(--header-height));
    max-height: 800px; /* Altura máxima para telas muito grandes */
    min-height: 600px; /* Altura mínima para telas pequenas */
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

/* ===== POSICIONAMENTO RESPONSIVO DO TEXTO ===== */
.hero-content {
    position: absolute;
    z-index: 10;
    left: 28%; 
    top: 43%; /* Centralizado verticalmente na área verde */
    transform: translateY(-50%);
    max-width: 600px;
    width: auto;
}


/* ===== RESPONSIVIDADE DO TEXTO ===== */

/* Desktop grande (> 1400px) */
@media (min-width: 1400px) {
    .hero-content {
        left: 22%; /* Alinhado com a área verde */
        top: 57%; /* Centralizado na área verde */
        max-width: 700px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .carousel-img {
        object-position: center center; /* Centralizado para mostrar toda a área amarela */
    }
}

/* Desktop médio (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-content {
        left: 19%; /* Alinhado com a área verde */
        top: 57%; /* Centralizado na área verde */
        max-width: 650px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .carousel-img {
        object-position: center center; /* Centralizado para mostrar toda a área amarela */
    }
}

/* Tablet landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content {
        left: 17%; /* Alinhado com a área verde */
        top: 57%; /* Centralizado na área verde */
        max-width: 550px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .carousel-img {
        object-position: center center; /* Centralizado para mostrar toda a área amarela */
    }
}

/* Tablet portrait (768px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-content {
        left: 10%; /* Alinhado com a área verde */
        top: 57%; /* Centralizado na área verde */
        max-width: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .carousel-img {
        object-position: center center; /* Centralizado para mostrar toda a área amarela */
    }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    .hero-content {
        left: 50%; /* Centralizado horizontalmente */
        top: 33%; /* Centralizado verticalmente */
        transform: translate(-50%, -50%); /* Centralização perfeita */
        max-width: 90%;
        width: 90%;
        text-align: center; /* Centralizar conteúdo */
    }
    
    .hero-title {
        display: none !important; /* Remover texto no mobile com !important */
    }
    
    .carousel-img {
        object-position: center center; /* Centralizado para mostrar toda a área amarela */
    }
    
    /* Garantir que apenas os botões sejam exibidos */
    .hero-actions {
        display: flex !important;
        justify-content: center;
        margin-top: 0; /* Remover margem superior já que não há texto */
        flex-direction: row; /* Botões lado a lado no mobile */
        gap: 1rem;
    }
    
    .hero-actions .btn {
        flex: 0 0 auto; /* Não expandir os botões */
        min-width: 120px; /* Largura mínima */
    }
}

/* Mobile pequeno (≤ 480px) */
@media (max-width: 480px) {
    .hero-content {
        left: 50%; /* Centralizado horizontalmente */
        top: 34%; /* Centralizado verticalmente */
        transform: translate(-50%, -50%); /* Centralização perfeita */
        max-width: 95%;
        width: 95%;
        text-align: center; /* Centralizar conteúdo */
    }
    
    .hero-title {
        display: none !important; /* Remover texto no mobile pequeno com !important */
    }
    
    .carousel-img {
        object-position: center center; /* Centralizado para mostrar toda a área amarela */
    }
    
    /* Garantir que apenas os botões sejam exibidos */
    .hero-actions {
        display: flex !important;
        justify-content: center;
        margin-top: 0;
        flex-direction: row; /* Botões lado a lado em telas pequenas */
        gap: 0.8rem;
    }
    
    .hero-actions .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;    
        flex: 0 0 auto; /* Impedir expansão e manter lado a lado */
        min-width: 120px; /* Largura mínima para consistência */
    }
}

.hero-title {
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1; font-family: 'Days One', sans-serif;
}

.hero-title .highlight {
    color: #dc2626;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    /* Posicionamento responsivo dos botões */
}

.hero-actions .btn {
    font-family: 'Days One', sans-serif;
}

/* ===== RESPONSIVIDADE DOS BOTÕES ===== */

/* Desktop grande (> 1400px) */
@media (min-width: 1400px) {
    .hero-actions {
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .hero-actions .btn {
        padding: 0.5rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
}

/* Desktop médio (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-actions {
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .hero-actions .btn {
        padding: 0.5rem 1.6rem;
        font-size: 1rem;
    }
}

/* Tablet landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-actions {
        gap: 1rem;
        margin-top: 1.8rem;
    }
    
    .hero-actions .btn {
        padding: 0.5rem 1.6rem;
        font-size: 0.95rem;
    }
}

/* Tablet portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-actions {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .hero-actions .btn {
        padding: 0.5rem 1.4rem;
        font-size: 0.9rem;
    }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Mobile pequeno (≤ 480px) */
@media (max-width: 480px) {
    .hero-actions {
        gap: 0.8rem;
        margin-top: 1.2rem;
    }
    
    .hero-actions .btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
}

.connection-choice {
    padding: 5rem 0;
    background-color: white;
}

.connection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.connection-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.connection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.connection-card h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.connection-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Why Choose */
.why-choose {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #666;
}

/* Vision */
.vision {
    padding: 5rem 0;
    background-color: #1e293b;
    color: white;
    text-align: center;
}

.vision-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
}

.contact-cta {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-cta h3 {
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #dc2626;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #dc2626;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.whatsapp-float, .speedtest-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.whatsapp-float {
    background-color: #25d366;
}

.speedtest-float {
    background-color: #3498db;
}

.whatsapp-float:hover, .speedtest-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Page Header */
.feature-icon {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

/* Coverage Page */
.region-btn.active {
    background-color: #dc2626;
    color: white;
}

.plans-region.active {
    display: block;
}

.solution-card .btn {
    display: block;
    text-align: center;
}

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

@media (max-width: 969px) {
    .nav, .header-actions {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
    
    /* Removido: hero-actions já tem responsividade implementada acima */
    
    .hero-title {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid, .story-content, .tech-content, .map-container {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        margin-top: 2rem;
    }
    
    .story-visual, .tech-visual {
        margin-top: 2rem;
    }
    
    .map-info {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
    }
    
    /* Removido: hero-actions já tem responsividade implementada acima */
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .connection-grid, .features-grid, .mvv-grid, .team-features, .coverage-grid, .tech-comparison-grid, .info-grid, .plans-grid, .benefits-grid, .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .region-selector {
        flex-direction: column;
    }
    
    .plan-builder-container {
        grid-template-columns: 1fr;
    }
    
    .plan-summary {
        margin-top: 2rem;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 969px) {
    .hamburger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger-menu i {
        display: flex;
        flex-direction: row; /* Alinha os traços horizontalmente */
        justify-content: space-between;
        width: 24px;
    }
    
    .hamburger-menu i:before {
        content: "\f0c9"; /* Código do ícone de hambúrguer do Font Awesome */
    }
}

/* Animações para o menu mobile */
@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-nav.active .mobile-nav-link {
    animation: slideInDown 0.3s forwards;
}

/* Centralização dos botões na página principal */
@media (max-width: 969px) {
    /* Removido: hero-actions já tem responsividade implementada acima */
}


/* Coverage Page Styles */
.city-btn.active {
    border-color: #dc2626;
    background: #dc2626;
    color: white;
}

.city-btn.active:hover {
    color: white;
}

.neighborhood-list.active {
    display: block;
}

.neighborhood-btn.active {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
}

.tech-info.active {
    display: block;
}

.city-btn.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

.neighborhood-list.active {
    display: block;
}

.neighborhood-btn.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

.tech-info.active {
    display: block;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Plan Builder Styles */
/* ===== CAROUSEL RESPONSIVO - VERSÃO LIMPA ===== */

.indicator.active {
    background: var(--white);
}

.slide-overlay h3 {
    font-size: 1rem;
}

.slide-overlay p {
    font-size: 0.8rem;
}

.carousel-indicators {
    bottom: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
}



/* ===== BANNER DE NOVIDADES ===== */
.nav-link.active {
    
    border-bottom: #dc2626;
    color: white;
}

/* ===== SISTEMA DE PLANOS ===== */
.progress-step.active {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-navigation .btn {
    flex: 1;
    max-width: 200px;
    padding: 1rem 2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== RESUMO DO PLANO ===== */
@media (max-width: 768px) {
    .plan-builder-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan-options-container {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .plan-summary {
        position: static;
        margin-top: 2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .extras-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .progress-bar {
        gap: 0.5rem;
    }
    
    .progress-step {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-navigation {
        flex-direction: column;
    }
    
    .step-navigation .btn {
        max-width: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out;
}

.animate-slide-up:nth-child(1) {
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.animate-slide-up:nth-child(2) {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.animate-slide-up:nth-child(3) {
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

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

/* ===== MELHORIAS VISUAIS ===== */
.solution-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ===== DETALHES DA SOLUÇÃO ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin: 0 auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.details-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .details-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .solution-header h2 {
        font-size: 2rem;
    }
    
    .solution-main-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .details-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .details-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .solution-card {
        padding: 1rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .solution-card h3 {
        font-size: 1.1rem;
    }
    
    .details-content {
        padding: 1.5rem 1rem;
    }
    
    .solution-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}


/* ===== SERVIÇOS ADICIONAIS ===== */
.services-cta .btn {
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.services-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.details-actions .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.details-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #c0392b);
    border: none;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.details-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.details-actions .btn-secondary {
    background: #6c757d;
    border: none;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.details-actions .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

/* ===== RESPONSIVIDADE PARA SERVIÇOS ADICIONAIS ===== */
@media (max-width: 768px) {
    .service-item {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-header {
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .service-description p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .services-cta {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }
    
    .services-cta h3 {
        font-size: 1.6rem;
    }
    
    .services-cta p {
        font-size: 1.1rem;
    }
    
    .services-cta .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .details-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .details-actions .btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: 2rem 1rem;
    }
    
    .service-header {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .service-header h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-description p {
        font-size: 0.95rem;
    }
    
    .services-cta {
        padding: 2rem 1rem;
    }
    
    .services-cta h3 {
        font-size: 1.4rem;
    }
    
    .services-cta p {
        font-size: 1rem;
    }
    
    .services-cta .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 1.2rem 0.8rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
}


/* ===== LAYOUT PARA SERVICE-ITEM LADO A LADO ===== */
.app-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text {
    text-align: left;
}

.app-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.app-features-simple {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item-simple {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature-item-simple i {
    color: #28a745;
    font-size: 1rem;
    min-width: 16px;
}

.feature-item-simple span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.app-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.app-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .app-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .app-text {
        text-align: center;
    }
    
    .app-text h2 {
        font-size: 2rem;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-column {
        gap: 0.5rem;
    }
    
    .download-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .app-text h2 {
        font-size: 1.8rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .app-icon {
        width: 40px;
        height: 40px;
    }
    
    .app-logo {
        width: 40px;
        height: 40px;
    }
}



/* ===== BANNER DE NOVIDADES ===== */
.news-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
    width: 100%;
}

.news-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.news-banner-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.news-banner-text i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    color: #fff;
}

.news-banner-text span {
    font-weight: 500;
    font-size: 0.95rem;
    color: #fff;
}

.news-banner-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.news-banner-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.news-banner-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    color: white;
}

.news-banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.news-banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Animações do banner */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bannerSlideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsividade do banner */
@media (max-width: 768px) {
    .news-banner {
        padding: 12px 0;
    }
    
    .news-banner-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .news-banner-text {
        justify-content: center;
        min-width: auto;
    }
    
    .news-banner-text span {
        font-size: 0.9rem;
    }
    
    .news-banner-btn {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .news-banner {
        padding: 10px 0;
    }
    
    .news-banner-text span {
        font-size: 0.85rem;
    }
    
    .news-banner-btn {
        padding: 5px 12px;
    }
}

/* ===== CAROUSEL LIMPO - BASEADO NO CHATGPT ===== */

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

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém proporção cortando se necessário */
    object-position: center center; /* Centralizado para mostrar toda a área amarela */
    filter: brightness(0.9);
    display: block;
    /* Garantir que a imagem cubra toda a área */
    min-width: 100%;
    min-height: 100%;
}

/* ===== RESPONSIVIDADE LIMPA ===== */

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

/* ===== INDICADORES ===== */

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
}

@media (max-width: 768px) {
    .carousel-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}


/* ===== LOGO INLINE NO HERO TITLE ===== */
.logo-inline {
    height: 1em; /* Altura proporcional ao texto */
    width: auto;
    vertical-align: baseline;
    display: inline-block;
    margin-left: 0.2em;
    padding-top: 0.15em;
    filter: brightness(1.1); /* Deixa a logo um pouco mais brilhante */
}

/* Ajustes responsivos para a logo */
@media (max-width: 969px) {
    .logo-inline {
        height: 0.9em;
    }
}

@media (max-width: 768px) {
    .logo-inline {
        height: 0.8em;
    }
}



/* ===== CAROUSEL RESPONSIVO OTIMIZADO ===== */

/* Desktop grande (> 1400px) */
@media (min-width: 1400px) {
    .hero {
        max-height: 900px;
    }
    
    /* object-position já definido acima na responsividade coordenada */
}

/* Desktop médio (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero {
        max-height: 800px;
    }
}

/* Tablet landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero {
        height: 80vh;
        max-height: 700px;
        min-height: 500px;
    }
}

/* Tablet portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        height: 70vh;
        max-height: 600px;
        min-height: 450px;
    }
    
    /* object-position já definido acima na responsividade coordenada */
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    .hero {
        height: 100vh; /* Altura fixa para manter proporção */
        max-height: 100vh;
        min-height: 100vh;
        padding: 0;
        position: relative; /* Para posicionamento absoluto dos botões */
    }
    
    /* Garantir que a imagem mantenha proporção e letreiro visível */
    .carousel-img {
        object-fit: cover;
        object-position: center center; /* Centralizada para manter letreiro visível */
        height: 100%;
        width: 100%;
    }
    
    /* BOTÕES - POSIÇÃO FACILMENTE EDITÁVEL */
    .hero-actions {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        /* ⬇️ ALTERE ESTE VALOR PARA MUDAR A ALTURA ⬇️ */
        top: 57% !important; /* 👈 EDITE AQUI: 50% = mais alto, 70% = mais baixo */
        /* ⬆️ ALTERE ESTE VALOR PARA MUDAR A ALTURA ⬆️ */
        display: flex !important;
        flex-direction: row !important;
        gap: 0.8rem !important;
        margin: 0 !important;
        width: auto !important;
        z-index: 11;
    }
    
    .hero-actions .btn {
        width: auto !important;
        min-width: 120px;
        flex: 0 0 auto;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        font-family: 'Days One', sans-serif;
    }
}

/* Mobile pequeno (≤ 480px) */
@media (max-width: 480px) {
    .hero {
        height: 100vh; /* Altura fixa para manter proporção */
        max-height: 100vh;
        min-height: 100vh;
        position: relative; /* Para posicionamento absoluto dos botões */
    }
    
    /* Garantir que a imagem mantenha proporção e letreiro visível */
    .carousel-img {
        object-fit: cover;
        object-position: center center; /* Centralizada para manter letreiro visível */
        height: 100%;
        width: 100%;
    }
    
    /* BOTÕES - POSIÇÃO FACILMENTE EDITÁVEL */
    .hero-actions {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        /* ⬇️ ALTERE ESTE VALOR PARA MUDAR A ALTURA ⬇️ */
        top: 55% !important; /* 👈 EDITE AQUI: 50% = mais alto, 70% = mais baixo */
        /* ⬆️ ALTERE ESTE VALOR PARA MUDAR A ALTURA ⬆️ */
        display: flex !important;
        flex-direction: row !important;
        gap: 0.8rem !important;
        margin: 0 !important;
        width: auto !important;
        z-index: 11;
    }
    
    .hero-actions .btn {
        width: auto !important;
        min-width: 110px;
        flex: 0 0 auto;
        font-size: 0.85rem;
        padding: 0.7rem 0.9rem;
        font-family: 'Days One', sans-serif;
    }
}

/* Desktop volta ao normal */
@media (min-width: 768px) {
  .hero-actions {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    margin: 0;
  }
}