/* =========================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================= */
:root {
    --bg-dark: #7fa1e1;
    --bg-light: #f8fafc;
    --bg-gradiente:radial-gradient(circle at 70% 30%, #79a9fc 0%, #557cfc 100%);
    --accent-blue: #3b82f6;
    --accent-yellow: #f59e0b;
    --accent-green: #22c55e;
    --text-white: #ffffff;
    --text-gray: #eceef1;
    --text-dark: #fced43;
    --text-muted: #64748b;
    --border-rgba: rgba(193, 216, 200, 0.1);
   
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark); /* Fundo geral escuro */
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* =========================================
   HEADER & NAVEGAÇÃO
   ========================================= */


header {
    
    position: fixed;
    top: 0;              /* Prende ele exatamente no topo */
    left: 0;
    width: 100%;         /* Garante que ele ocupe toda a largura da tela */
    z-index: 1000;       /* Faz o menu ficar por cima de qualquer outro elemento (como o model-viewer ou imagens) */
    background-color: var(--bg-dark); /* Ou a cor de fundo que você já usa */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-white);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.btn-whatsapp-top {
    background: #1e3a8a;
    padding: 10px 22px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =========================================
   SEÇÃO HERO (TOPO ESCURO)
   ========================================= */
.hero-main {
    padding: 80px 0;
    background: radial-gradient(circle at 90% 10%, #b9d0f7 0%, #7391f6 100%);
}

.grid-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.description {
    color: var(--text-gray);
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.features {
    list-style: none;
    margin-bottom: 40px;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.check {
    color: var(--accent-blue);
    margin-right: 12px;
    font-weight: bold;
}

.actions {
    display: flex;
    gap: 15px;
}

.btn-amazon {
    background: var(--accent-yellow);
    color: black;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.btn-whatsapp {
    background: var(--accent-green);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}
/* Ajuste de escala interna do Model Viewer */
#capa-3d, #modelo-ar {
    --poster-color: transparent;
    min-height: 400px;
     max-width: 100%;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 20px; /* Adiciona um respiro interno */
}


/* Container da dica de interação */
.interaction-prompt {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background:var(--bg-gradiente);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none; /* Garante que o clique passe para o modelo 3D */
    animation: fadeOut 4s forwards; /* A dica desaparece após 4 segundos */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-hand {
    font-size: 1.5rem;
    animation: handMove 2s infinite ease-in-out;
}

.interaction-prompt p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0;
}

.drag-arrows {
    font-size: 1.2rem;
    color: var(--accent-blue);
}

/* Animação da Mãozinha simulando arrastar */
@keyframes handMove {
    0%, 100% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
}

/* Animação para sumir suavemente após o usuário notar */
@keyframes fadeOut {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* =========================================
   SEÇÃO AR + MAKING OF (FUNDO BRANCO)
   ========================================= */
.ar-section {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    padding: 80px 0;
}

.grid-ar-making-of {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.making-of-card {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.making-of-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.tech-subtitle {
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 15px;
}

.blender-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 15px 0;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.ar-visual-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ar-text h2 {
    color: var(--accent-blue);
    font-size: 2.2rem;
}

.highlight-blue {
    color: #1e40af;
    font-weight: 600;
    font-size: 1.4rem;
}

.instruction {
    color: var(--text-muted);
    font-style: italic;
}

.phone-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradiente);
    border-radius: 25px;
    padding: 30px;
    margin-top: 20px;
    min-height: 480px;
}

.phone-frame {
    width: 100%;
    max-width: 500px;
    height: 100%;
    position: relative;
    border: 8px solid #334155;
    border-radius: 40px;
    overflow: hidden;
     display: flex;
      align-items: center; /* Alinha verticalmente ao centro */
}



#modelo-ar {
   width: 100%; /* Ajuste conforme necessário */
    height: 400px;
}

.imagem-lateral {
    width: 40%; /* Ajuste conforme necessário */
    height: auto;
    border-radius: 8px; /* Opcional: bordinhas arredondadas */
}

.ar-button-trigger {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    z-index: 10;
}

.book-description-text {
    margin: 20px 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.book-description-text p {
    margin-bottom: 15px;
    line-height: 1.5;
}
/* Estilos da Seção Autor */
.author-section {
    background: var(--bg-gradiente);
    padding: 80px 0;
    color: white;
}

.grid-author {
    display: grid;
    grid-template-columns: 250px 1.2fr 1px 1fr; /* Foto, Texto, Divisor, Stats */
    gap: 40px;
    align-items: center;
}

.author-photo img {
    width: 50%;
    border-radius: 12px;
    display: block;
}

.tagline-gold {
    color: var( --text-dark);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.tagline-gold-dark {
    color: var( --accent-yellow);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.author-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.author-info p {
    color: white;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.btn-outline-gold {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: black;
}

.vertical-divider {
    background-color: #334155;
    height: 120px;
}

.author-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-icon {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.65rem;
    color: white;
    letter-spacing: 1px;
}

/* QR Code - Visível apenas em telas maiores (Desktop) */
.qr-code-wrapper {
    text-align: center;
    margin-top: 20px;
}

.qr-code-img {
    width: 150px;
    height: 150px;
    margin-top: 10px;
}

.qr-text {
    font-size: 0.9rem;
    color: #1e3a8a;
    font-weight: 700;
}

/* Overlay Estilo Imagem 2 */
.ar-instruction-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay-content img {
    width: 80%;
    max-width: 300px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--accent-blue);
}

.overlay-content p {
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
}

.btn-start-ar {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
}

/* Esconde o QR Code no celular para não poluir */
@media (max-width: 768px) {
    .qr-code-wrapper { display: none; }
}


/* SEÇÃO DEPOIMENTOS */
.testimonials-section {
    background-color:  white; 
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tagline-gold.center {
    text-align: center;
    margin-bottom: 50px;
}

.grid-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-gradiente);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
}

/* Responsividade Depoimentos */
@media (max-width: 991px) {
    .grid-testimonials {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Ajuste Responsivo */
@media (max-width: 991px) {
    .grid-author {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .author-photo {
        max-width: 80px;
        margin: 0 auto;
    }
    .vertical-divider {
        display: none;
    }
    .author-stats {
        flex-direction: column;
        gap: 40px;
    }
}

/* =========================================
   SEÇÕES CLARAS (ENTREGO / COMO FUNCIONA)
   ========================================= */
.deliverables, .how-it-works {
    background-color: #ffffff !important;
    color: var(--text-dark) !important;
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark) !important;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.card h3 { color: var(--text-dark); }
.card p { color: var(--text-muted); }

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    border: 1px solid #e2e8f0;
}

.step h4 { color: var(--text-dark); }
.step p { color: var(--text-muted); }

/* =========================================
   FOOTER (RODAPÉ)
   ========================================= */
.footer-legal {
    background-color: var(--bg-dark);
    padding: 60px 0;
    border-top: 1px solid var(--border-rgba);
    text-align: center;
    color: var(--text-white);
}

.footer-legal p {
    color: var(--text-gray);
    font-size: 0.85rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.footer-credits {
    color: var(--text-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 991px) {
    .grid-ar-making-of, .steps-container {
        flex-direction: column;
    }
    
    .grid-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

