/* CSS da Página FAQ - New Store */

/* Reset e configurações básicas */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    position: relative;
    background-color: #191b2a; /* Azul escuro igual à página de pedidos */
    color: white;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    position: relative;
}

/* Pattern de aviõezinhos removido - usaremos apenas nuvens */

/* Logo com tamanhos consistentes */
.logo-container img {
    height: 72px !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .logo-container img {
        height: 58px !important;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        height: 52px !important;
    }
}

/* BOTÕES DO HEADER - NOVA PALETA */
.header-btn {
    background-color: white !important;
    color: #121F4B !important;
    border: 2px solid #121F4B !important;
}

.header-btn:hover {
    background-color: #FF662B !important; /* Laranja no hover */
    color: white !important;
    border-color: #FF662B !important;
    transform: translateY(-2px);
}

.header-btn:hover i {
    color: white !important;
}

.header-btn i, 
.header-btn img {
    color: #121F4B !important;
}

.header-btn.carrinho {
    background-color: white !important;
    border-color: #121F4B !important;
    color: #121F4B !important;
}

.header-btn.carrinho:hover {
    background-color: #FF662B !important;
    border-color: #FF662B !important;
    color: white !important;
}

.header-btn.whatsapp i,
.header-btn.business i {
    color: #121F4B !important;
}

.header-btn.whatsapp:hover i,
.header-btn.business:hover i {
    color: white !important;
}

/* Destaques específicos */
.header-btn.meus-pedidos-destaque,
.header-btn.loja-rapida-destaque {
    background-color: white !important;
    border-color: #121F4B !important;
    color: #121F4B !important;
}

.header-btn.meus-pedidos-destaque:hover,
.header-btn.loja-rapida-destaque:hover {
    background-color: #FF662B !important;
    border-color: #FF662B !important;
    color: white !important;
}

.header-btn.meus-pedidos-destaque i,
.header-btn.loja-rapida-destaque i {
    color: #121F4B !important;
}

.header-btn.meus-pedidos-destaque:hover i,
.header-btn.loja-rapida-destaque:hover i {
    color: white !important;
}

/* ========================================
   HERO SECTION COM NUVENS - PÁGINA COMPLETA
   ======================================== */

.hero-clouds-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Altura total da viewport */
    overflow: visible; /* Permite nuvens fluírem */
    display: flex;
    flex-direction: column;
    padding-top: 100px; /* Espaço após header */
}

.faq-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    padding: 40px 20px 20px 20px;
}

.faq-hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    animation: fadeInUp 1s ease-out;
    margin-bottom: 20px;
}

.faq-text-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

/* Ícone do Balão FAQ - MAIOR AINDA */
.faq-icon-container {
    position: relative;
    flex-shrink: 0;
}

.faq-icon {
    width: 550px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

/* Título */
.faq-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.faq-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

/* Quebra de linha apenas no mobile */
.mobile-break {
    display: none;
}

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

/* ========================================
   CONTAINER DE PERGUNTAS - SEM CATEGORIAS
   ======================================== */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}

.faq-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Gap menor entre perguntas */
}

/* Items FAQ - Cada um com seu próprio container - OTIMIZADO */
.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Pergunta - SIMPLIFICADA */
.faq-question {
    width: 100%;
    background: white;
    border: none;
    border-radius: 0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question.active {
    background: white;
}

.faq-question.active .question-text {
    color: #121F4B;
    font-weight: 700;
}

.question-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #121F4B;
    text-align: left;
    flex: 1;
    transition: color 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.faq-dropdown-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-dropdown-icon i {
    color: #666;
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.faq-question.active .faq-dropdown-icon i {
    color: #FF662B;
    transform: rotate(180deg);
}

/* Resposta - SIMPLIFICADA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: white;
    border: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 2000px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer p strong {
    color: #121F4B;
    font-weight: 600;
}

/* ========================================
   TEXTO FINAL DO FAQ
   ======================================== */

.faq-footer-text {
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.faq-footer-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.faq-footer-text p:last-child {
    margin-bottom: 0;
}

.faq-footer-text a[href^="mailto:"] {
    color: #FF662B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.faq-footer-text a[href^="mailto:"]:hover {
    color: #FF8A50;
    text-decoration: underline;
}

/* Ícone do WhatsApp */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    border-radius: 50%;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    outline: none !important;
    border: none !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.whatsapp-link:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
}

.whatsapp-link:focus,
.whatsapp-link:active,
.whatsapp-link:visited {
    outline: none !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.whatsapp-link i {
    color: white !important;
    font-size: 35px;
}

@media (max-width: 768px) {
    .faq-footer-text {
        margin: 30px auto 50px;
        padding: 25px 15px;
    }
    
    .faq-footer-text p {
        font-size: 1rem;
    }
    
    .whatsapp-link {
        width: 65px;
        height: 65px;
    }
    
    .whatsapp-link i {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .faq-footer-text {
        margin: 25px auto 40px;
        padding: 20px 10px;
    }
    
    .faq-footer-text p {
        font-size: 0.95rem;
    }
    
    .whatsapp-link {
        width: 60px;
        height: 60px;
        margin-top: 15px;
    }
    
    .whatsapp-link i {
        font-size: 30px;
    }
}

/* ========================================
   MENU FLUTUANTE - NOVA PALETA
   ======================================== */

.btn-menu-flutuante {
    background-color: white !important;
    color: #121F4B !important;
    border: 2px solid #121F4B !important;
}

.btn-menu-flutuante:hover {
    background-color: #FF662B !important;
    color: white !important;
    border-color: #FF662B !important;
}

.btn-menu-flutuante i {
    color: #121F4B !important;
}

.btn-menu-flutuante:hover i {
    color: white !important;
}

.menu-aberto .btn-menu-flutuante {
    background-color: #FF662B !important;
    color: white !important;
    border-color: #FF662B !important;
}

.menu-opcao {
    background-color: white !important;
    color: #121F4B !important;
    border: 1px solid #121F4B !important;
}

.menu-opcao:hover {
    background-color: #FF662B !important;
    color: white !important;
    border-color: #FF662B !important;
}

.menu-opcao i,
.menu-opcao img {
    color: #121F4B !important;
}

.menu-opcao:hover i,
.menu-opcao:hover img {
    color: white !important;
}

.menu-opcao.whatsapp i {
    color: #25D366 !important;
}

.menu-opcao.whatsapp:hover i {
    color: white !important;
}

/* REMOÇÃO ESPECÍFICA DE BOTÕES - APENAS PÁGINA DE FAQ */
/* Ocultar botão FAQ do menu flutuante (já que estamos nela) */
.menu-opcao.faq {
    display: none !important;
}

/* Garantir que o menu flutuante esteja fixo e visível */
.menu-flutuante-container {
    position: fixed !important;
    bottom: 32px !important;
    right: 32px !important;
    z-index: 9999 !important;
}

@media (max-width: 768px) {
    .menu-flutuante-container {
        bottom: 20px !important;
        right: 20px !important;
    }
}

@media (max-width: 480px) {
    .menu-flutuante-container {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 99999 !important;
        display: flex !important;
    }
    
    .btn-menu-flutuante {
        position: relative !important;
    }
}

/* Botão FAQ no header de TODAS as páginas - apenas ícone */
.header-btn[href*="faq"] .btn-text,
.header-btn[href*="faq"] .btn-text-mobile {
    display: none !important;
}

.header-btn[href*="faq"] {
    min-width: auto !important;
    padding: 8px 16px !important;
}

.header-btn[href*="faq"] i {
    margin: 0 !important;
}

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

@media (max-width: 768px) {
    .hero-clouds-wrapper {
        min-height: 100vh;
        padding-top: 40px;
    }
    
    .faq-hero-container {
        padding: 20px 15px 15px 15px;
    }
    
    .faq-hero-content {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 15px;
    }
    
    .faq-text-content {
        text-align: center;
        gap: 12px;
    }
    
    .mobile-break {
        display: inline;
    }
    
    .faq-icon {
        width: 440px;
    }
    
    .faq-title {
        font-size: 3.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.3rem;
    }
    
    .faq-container {
        padding: 0 15px 60px;
        margin-top: -40px;
    }
    
    .faq-item {
        border-radius: 10px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .faq-dropdown-icon {
        width: 26px;
        height: 26px;
    }
    
    .faq-dropdown-icon i {
        font-size: 18px;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-clouds-wrapper {
        min-height: 100vh;
        padding-top: 30px;
    }
    
    .faq-hero-container {
        padding: 15px 10px 10px 10px;
    }
    
    .faq-hero-content {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 10px;
    }
    
    .faq-text-content {
        text-align: center;
        gap: 10px;
    }
    
    .mobile-break {
        display: inline;
    }
    
    .faq-icon {
        width: 380px;
    }
    
    .faq-title {
        font-size: 3.2rem;
        letter-spacing: -0.3px;
    }
    
    .faq-subtitle {
        font-size: 1.2rem;
    }
    
    .faq-container {
        padding: 0 10px 50px;
        margin-top: -50px;
    }
    
    .faq-content-wrapper {
        gap: 12px;
    }
    
    .faq-item {
        border-radius: 8px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .question-text {
        font-size: 1.05rem;
        font-weight: 700;
    }
    
    .faq-dropdown-icon {
        width: 24px;
        height: 24px;
    }
    
    .faq-dropdown-icon i {
        font-size: 16px;
    }
    
    .faq-answer.active {
        padding: 0 16px 16px 16px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

