* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden; /* Previne scroll horizontal */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden; /* Previne scroll horizontal */
    width: 100%;
    max-width: 100vw; /* Garante que não ultrapasse a largura da viewport */
}

/* Melhorias para dispositivos touch */
.touch-device {
    -webkit-overflow-scrolling: touch;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease; /* Reduzido de 0.3s */
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-dark {
    background-color: #000000;
    color: #FFFFFF;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease; /* Reduzido de 0.3s */
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #0047AB;
    color: #FFFFFF;
    border-color: #0047AB;
}

.btn-primary:hover {
    background-color: #003380;
    border-color: #003380;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: #0047AB;
    border-color: #0047AB;
}

.btn-outline:hover {
    background-color: #0047AB;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.bg-dark .btn-outline {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.bg-dark .btn-outline:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Botão flutuante */
.btn-flutuante-comprar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-flutuante-comprar:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Cabeçalhos de Seção */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    color: #0047AB;
    margin-bottom: 10px;
    font-weight: 600;
}

.bg-dark .section-subtitle {
    color: #FFFFFF;
    opacity: 0.8;
}

.underline {
    height: 4px;
    width: 80px;
    background-color: #0047AB;
    margin: 0 auto;
}

.bg-dark .underline {
    background-color: #FFFFFF;
}

.nome {
    color: #093166;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transition: all 0.2s ease; /* Reduzido de 0.3s */
    will-change: transform; /* Melhora o desempenho de animações */
}

#header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#header .container {
    display: flex;
    justify-content: space-between;
    /* Ensure logo, nav, icons are spaced out */
    align-items: center;
}

/* WhatsApp flutuante no header */
.header-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
    animation: pulse 1.8s infinite;
}

.header-whatsapp:hover {
    background-color: #1ebe5d;
}

/* Ícone dentro do botão do header */
.header-whatsapp i {
    font-size: 1rem;
}

/* Ícone do WhatsApp no header/footer (social-icons) */
.social-icon i.fa-whatsapp {
    color: #25D366;
    transition: color 0.2s ease;
}

.social-icon:hover i.fa-whatsapp {
    color: #fff;
}

/* Bolinha de fundo do ícone do WhatsApp */
.social-icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: #25D366;
}


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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.logo span {
    color: #0047AB;
}

.desktop-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
}

.desktop-nav ul li {
    margin-left: 25px;
}

.desktop-nav ul li a {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0047AB;
    transition: width 0.2s ease; /* Reduzido de 0.3s */
}

.desktop-nav ul li a:hover::after,
.desktop-nav ul li a.active::after {
    width: 100%;
}

.social-icons {
    display: flex;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    margin-left: 10px;
    transition: all 0.2s ease; /* Reduzido de 0.3s */
}

.social-icon:hover {
    background-color: #0047AB;
    transform: translateY(-3px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: all 0.2s ease; /* Reduzido de 0.3s */
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #000000;
    padding: 80px 20px 20px;
    z-index: 999;
    transition: all 0.3s ease; /* Reduzido de 0.4s */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Melhora o scroll em iOS */
}

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

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-mobile {
    display: flex;
    margin-top: 30px;
}

.social-icons-mobile .social-icon {
    margin-left: 0;
    margin-right: 10px;
}

.social-icon i.fa-whatsapp {
    color: #25D366;
    /* verde oficial do WhatsApp */
}

.social-icon i.fa-whatsapp:hover {
    color: #1ebe5d;
}

/* Hero Section */
#hero {
    height: 100vh;
    min-height: 600px;
    background-image: url(image.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover; /* Adicionado para garantir que a imagem cubra a área */
    position: relative;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Sobre Section */
.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-img {
    flex: 1;
}

.img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid #0047AB;
    border-radius: 10px;
    z-index: -1;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.registro {
    background-color: #f5f5f5;
    padding: 20px;
    border-left: 4px solid #0047AB;
    margin: 30px 0;
}

/* Como Funciona Section */
.como-funciona-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.como-funciona-content p {
    font-size: 1.5rem;
    line-height: 1.8;
}

/* Serviços Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease; /* Reduzido de 0.3s */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease; /* Reduzido de 0.5s */
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Diferenciais Section */
.diferenciais-header {
    text-align: center;
    margin-bottom: 60px;
}

.diferenciais-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.diferenciais-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.diferenciais-list {
    flex: 1;
}

.diferencial-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.diferencial-item i {
    font-size: 1.5rem;
    color: #0047AB;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-item p {
    font-size: 1.1rem;
}

.diferenciais-img {
    flex: 1;
    position: relative;
}

.diferenciais-img img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Passo a Passo Section */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #0047AB;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #0047AB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    z-index: 1;
}

.timeline-icon .number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #FFFFFF;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    border-style: solid;
    border-width: 10px 20px 10px 0;
    border-color: transparent #FFFFFF transparent transparent;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0047AB;
}

/* Planos Section */
.planos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.plano-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease; /* Reduzido de 0.3s */
    color: #000000;
}

.plano-card.featured {
    background-color: #0047AB;
    color: #FFFFFF;
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(0, 71, 171, 0.3);
}

.plano-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plano-card.featured .plano-header {
    border-color: rgba(255, 255, 255, 0.1);
}

.plano-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.preco {
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.moeda {
    font-size: 1rem;
    position: absolute;
    top: 10px;
    left: -20px;
}

.plano-content {
    padding: 30px;
}

.plano-content ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plano-content ul li i {
    margin-right: 10px;
    font-size: 1rem;
}

.plano-content ul li .fa-check {
    color: #0047AB;
}

.plano-card.featured .plano-content ul li .fa-check {
    color: #FFFFFF;
}

.plano-content ul li .fa-times {
    color: #ff4d4d;
}

.plano-footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.plano-card.featured .plano-footer {
    border-color: rgba(0, 0, 0, 0.1);
}

.plano-footer .btn {
    margin: 5px;
}

/* Depoimentos Section */
.rating {
    text-align: center;
    margin-bottom: 10px;
}

.rating i {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 0 2px;
}

.rating-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

/* Footer mobile - reduzir espaçamento do separador */
@media (max-width: 768px) {
    .footer-separator {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 480px) {
    .footer-separator {
        margin-bottom: 5px !important;
    }
}

@media (max-width: 320px) {
    .footer-separator {
        margin-bottom: 3px !important;
    }
}

/* Ajustes no container principal do slider */
.depoimentos-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    overflow: hidden;
}

/* Container que vai deslizar */
.depoimentos-track {
    display: flex;
    transition: transform 0.3s ease; /* Reduzido de 0.5s */
    width: 100%;
    will-change: transform; /* Melhora o desempenho de animações */
}

/* Ajustes nos cards para ficarem lado a lado */
.depoimento-card {
    flex: 0 0 33.333%;
    min-width: 300px;
    padding: 0 15px;
    box-sizing: border-box;
    transition: opacity 0.2s ease; /* Reduzido de 0.3s */
}

.depoimento-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.depoimento-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.depoimento-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 15px;
}

.depoimento-author {
    display: flex;
    align-items: center;
    padding-left: 10px;
    margin-top: 15px;
}

/* Controles do slider */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn,
.next-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 5px 15px;
    transition: color 0.2s ease; /* Reduzido de 0.3s */
}

.prev-btn:hover,
.next-btn:hover {
    color: #007bff;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.2s ease; /* Reduzido de 0.3s */
}

.dot.active {
    background-color: #007bff;
}

/* Responsividade */
@media (max-width: 992px) {
    .depoimento-card {
        flex: 0 0 50%;
    }
    
    /* Ajustes para tablets */
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .sobre-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .diferenciais-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Previne overflow horizontal */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* Garante que todos os elementos respeitem a largura da tela */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .depoimento-card {
        flex: 0 0 100%;
    }
    
    /* Botões de navegação maiores para facilitar o toque */
    .prev-btn, .next-btn {
        padding: 10px 20px;
        font-size: 1.8rem;
    }
    
    /* Ajustes específicos para mobile */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .social-icons {
        display: none;
    }
    
    /* Hero section mobile */
    #hero {
        background-attachment: scroll; /* Remove fixed para mobile */
        min-height: 500px;
        background-size: cover;
        background-position: center;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Ajustes de layout para mobile */
    .section-header h1,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .sobre-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .sobre-text p {
        font-size: 1rem;
    }
    
    .diferenciais-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .diferencial-item {
        margin-bottom: 20px;
    }
    
    .diferencial-item p {
        font-size: 1rem;
    }
    
    /* Timeline mobile */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        display: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        display: none;
    }
    
    /* Services grid mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-img {
        height: 200px;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-content > div {
        flex: 1 1 auto;
    }
    
    /* Footer mobile - espaçamento mínimo */
    #footer {
        padding: 15px 0 !important;
    }
    
    .footer-content {
        gap: 10px !important;
        margin-bottom: 10px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .footer-content > div {
        flex: none !important;
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .footer-logo h1 {
        font-size: 1.3rem !important;
        margin-bottom: 5px !important;
    }
    
    .footer-logo p {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
    
    .footer-links ul {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    
    .footer-links ul li {
        margin: 0 !important;
    }
    
    .footer-contact p {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }
    
    /* Footer bottom mobile */
    .footer-bottom {
        margin-top: 10px !important;
        text-align: center !important;
    }
    
    .footer-copy p,
    .footer-credit p {
        font-size: 0.7rem !important;
        margin-bottom: 5px !important;
    }
}

@media (max-width: 480px) {
    /* Ajustes para telas muito pequenas */
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-padding {
        padding: 30px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Footer mobile pequeno - espaçamento ultra reduzido */
    #footer {
        padding: 10px 0 !important;
    }
    
    .footer-content {
        gap: 8px !important;
        margin-bottom: 8px !important;
    }
    
    .footer-content > div {
        margin-bottom: 8px !important;
    }
    
    .footer-logo h1 {
        font-size: 1.2rem !important;
        margin-bottom: 3px !important;
    }
    
    .footer-logo p {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }
    
    .footer-contact p {
        font-size: 0.75rem !important;
        margin-bottom: 3px !important;
    }
    
    /* Footer bottom mobile pequeno */
    .footer-bottom {
        margin-top: 8px !important;
    }
    
    .footer-copy p,
    .footer-credit p {
        font-size: 0.65rem !important;
        margin-bottom: 3px !important;
    }
    
    /* Botão flutuante mobile */
    .btn-flutuante-comprar {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-content > div {
    flex: 1 1 280px;
}


/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease; /* Reduzido de 0.3s */
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background-color: #0047AB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease; /* Reduzido de 0.3s */
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Mantido para suavidade */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Valor ajustável conforme o conteúdo */
    padding: 20px; /* Adiciona padding quando ativo */
    transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

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

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.bg-dark .faq-question {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-dark .faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .faq-answer p {
    color: #ccc;
}

/* Footer */
#footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 50px 0;
    text-align: center;
}

#footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-logo span {
    color: #0047AB;
}


.footer-links ul li {
    margin: 0 15px;
}

.footer-links ul li a {
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.2s ease; /* Reduzido de 0.3s */
}

.footer-links ul li a:hover {
    color: #0047AB;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social-icons .social-icon {
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease; /* Reduzido de 0.3s */
}

.footer-social-icons .social-icon:hover {
    background-color: #0047AB;
    transform: translateY(-3px);
}

.footer-contact p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #FFFFFF;
    transition: color 0.2s ease;
}

@media (max-width: 320px) {
    /* Ajustes para telas muito pequenas */
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.1;
        padding: 0 5px;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        padding: 0 5px;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 1.4rem;
        padding: 0 5px;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .section-padding {
        padding: 20px 0;
    }
    
    /* Footer mobile muito pequeno - espaçamento mínimo absoluto */
    #footer {
        padding: 8px 0 !important;
    }
    
    .footer-content {
        gap: 5px !important;
        margin-bottom: 5px !important;
    }
    
    .footer-content > div {
        margin-bottom: 5px !important;
    }
    
    .footer-logo h1 {
        font-size: 1.1rem !important;
        margin-bottom: 2px !important;
    }
    
    .footer-logo p {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
    }
    
    .footer-contact p {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }
    
    /* Footer bottom mobile muito pequeno */
    .footer-bottom {
        margin-top: 5px !important;
    }
    
    .footer-copy p,
    .footer-credit p {
        font-size: 0.6rem !important;
        margin-bottom: 2px !important;
    }
    
    .btn-flutuante-comprar {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.7rem;
    }
}
