/* ===================================
   ENTREVISTA ESTRATÉGICA - CSS V2
   Design Escuro com Detalhes Prata
   =================================== */

/* ===================================
   1. RESET E VARIÁVEIS
   =================================== */

:root {
    /* Cores Principais - Design Escuro */
    --preto-principal: #0a0a0a;
    --preto-secundario: #151515;
    --preto-card: #1a1a1a;

    /* Prata/Cinza - Inspirado na Platinum */
    --prata-claro: #e8e8e8;
    --prata-medio: #c0c0c0;
    --prata-escuro: #909090;
    --cinza-texto: #a0a0a0;

    /* Roxo - Apenas para Detalhes */
    --roxo-destaque: #7014c9;
    --roxo-hover: #5a0ea5;

    /* Cores Neutras */
    --branco: #ffffff;
    --branco-suave: #f5f5f5;

    /* Espaçamentos */
    --espacamento-xs: 0.5rem;
    --espacamento-sm: 1rem;
    --espacamento-md: 2rem;
    --espacamento-lg: 3rem;
    --espacamento-xl: 4rem;

    /* Fontes */
    --fonte-principal: 'Roboto', Arial, sans-serif;

    /* Transições */
    --transicao-rapida: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-principal);
    font-size: 16px;
    line-height: 1.6;
    color: var(--prata-claro);
    background-color: var(--preto-principal);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--espacamento-sm);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   2. BOTÕES
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transicao-rapida);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--roxo-destaque), var(--roxo-hover));
    color: var(--branco);
    box-shadow: 0 4px 20px rgba(112, 20, 201, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(112, 20, 201, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--prata-claro);
    border: 2px solid var(--prata-medio);
}

.btn-secondary:hover {
    background: var(--prata-medio);
    color: var(--preto-principal);
    border-color: var(--prata-claro);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* ===================================
   3. TIPOGRAFIA
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--espacamento-sm);
    color: var(--branco);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: var(--espacamento-sm);
    color: var(--cinza-texto);
}

.section-title {
    text-align: center;
    color: var(--branco);
    margin-bottom: var(--espacamento-md);
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo-destaque), var(--prata-medio));
    margin: var(--espacamento-sm) auto 0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cinza-texto);
    max-width: 800px;
    margin: 0 auto var(--espacamento-md);
}

.title-highlight {
    background: url('../images/aco-escovado-p-500.webp');
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: center;
}

/* ===================================
   4. BOTÃO FLUTUANTE
   =================================== */

.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--roxo-destaque), var(--roxo-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(112, 20, 201, 0.5);
    z-index: 1000;
    transition: all var(--transicao-rapida);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(112, 20, 201, 0.7);
}

/* ===================================
   5. SEÇÃO HERO - LAYOUT LATERALIZADO
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--preto-principal);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../Banner_LP_1.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.6;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        var(--preto-principal) 0%,
        rgba(10, 10, 10, 0.9) 40%,
        rgba(10, 10, 10, 0.4) 70%,
        transparent 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content-left {
    max-width: 600px;
    padding: var(--espacamento-xl) 0;
}

.logo {
    max-width: 250px;
    margin-bottom: var(--espacamento-lg);
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.1));
}

.logo-entrevista {
    max-width: 500px;
    margin-bottom: var(--espacamento-xl);
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.1));
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--espacamento-md);
    color: var(--branco);
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--espacamento-md);
    color: var(--prata-claro);
    font-weight: 300;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: var(--espacamento-md);
    line-height: 1.8;
    color: var(--cinza-texto);
}

/* ===================================
   6. SEÇÃO PRODUTOS
   =================================== */

.produtos-section {
    padding: var(--espacamento-xl) 0;
    background-color: var(--preto-secundario);
    position: relative;
}

.produtos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prata-escuro), transparent);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--espacamento-md);
    max-width: 900px;
    margin: 0 auto;
}

.produto-card {
    background: var(--preto-card);
    padding: var(--espacamento-lg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all var(--transicao-rapida);
    position: relative;
    overflow: hidden;
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo-destaque), var(--prata-medio));
    transform: scaleX(0);
    transition: transform var(--transicao-rapida);
}

.produto-card:hover::before {
    transform: scaleX(1);
}

.produto-card:hover {
    transform: translateY(-5px);
    border-color: var(--prata-medio);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.1);
}

.produto-icon-minimal {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--espacamento-md);
    color: var(--prata-medio);
    transition: all var(--transicao-rapida);
}

.produto-card:hover .produto-icon-minimal {
    color: var(--roxo-destaque);
    transform: scale(1.1);
}

.produto-card h3 {
    color: var(--branco);
    margin-bottom: var(--espacamento-sm);
}

.produto-card p {
    color: var(--cinza-texto);
    margin-bottom: var(--espacamento-md);
}

.preco-antigo {
    color: var(--cinza-texto);
    font-size: 1.1rem;
    margin-bottom: var(--espacamento-xs);
}

.valor-riscado {
    text-decoration: line-through;
    opacity: 0.7;
}

.preco-atual {
    color: var(--prata-claro);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--espacamento-md);
}

/* ===================================
   7. SEÇÃO DESCRIÇÃO
   =================================== */

.descricao-section {
    padding: var(--espacamento-xl) 0;
    background-color: var(--preto-principal);
}

.descricao-flex-container {
    display: flex;
    align-items: center;
    gap: var(--espacamento-lg);
    margin-top: var(--espacamento-md);
}

.coaches-image-container {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.coaches-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

.descricao-content {
    flex: 1;
    text-align: left;
    font-size: 1.15rem;
    line-height: 1.8;
}

.descricao-content p {
    color: var(--cinza-texto);
}

/* ===================================
   8. SEÇÃO TEMAS
   =================================== */

.temas-section {
    padding: var(--espacamento-xl) 0;
    background-color: var(--preto-secundario);
}

.temas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--espacamento-md);
    margin-top: var(--espacamento-md);
}

.tema-card {
    background: var(--preto-card);
    padding: var(--espacamento-md);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all var(--transicao-rapida);
}

.tema-card:hover {
    transform: translateY(-5px);
    border-color: var(--prata-medio);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.1);
}

.tema-icon-minimal {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--espacamento-sm);
    color: var(--prata-medio);
    transition: all var(--transicao-rapida);
}

.tema-card:hover .tema-icon-minimal {
    color: var(--roxo-destaque);
    transform: scale(1.1);
}

.tema-card h3 {
    color: var(--branco);
    font-size: 1.3rem;
    margin-bottom: var(--espacamento-sm);
}

.tema-card p {
    color: var(--cinza-texto);
    font-size: 1rem;
}

/* ===================================
   9. SEÇÃO MOTIVAÇÃO
   =================================== */

.motivacao-section {
    padding: var(--espacamento-xl) 0;
    background: linear-gradient(135deg, var(--preto-card) 0%, var(--preto-principal) 100%);
    color: var(--prata-claro);
    position: relative;
}

.motivacao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/topography-platinum.svg');
    opacity: 0.03;
    pointer-events: none;
}

.motivacao-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.motivacao-content p {
    margin-bottom: var(--espacamento-md);
    color: var(--cinza-texto);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--prata-claro);
    border-left: 4px solid var(--roxo-destaque);
    padding-left: var(--espacamento-md);
    margin-top: var(--espacamento-md);
}

/* ===================================
   10. SEÇÃO FUNCIONAMENTO
   =================================== */

.funcionamento-section {
    padding: var(--espacamento-xl) 0;
    background-color: var(--preto-principal);
}

.etapas-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: var(--espacamento-md) 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
    position: relative;
}

.etapas-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1100 300" preserveAspectRatio="none"><path d="M 4,150 L 4,16 Q 4,4 16,4 L 259,4 Q 271,4 271,16 L 271,150 L 271,284 Q 271,296 283,296 L 542,296 Q 554,296 554,284 L 554,150 L 554,16 Q 554,4 566,4 L 809,4 Q 821,4 821,16 L 821,150 L 821,284 Q 821,296 833,296 L 1084,296 Q 1096,296 1096,284 L 1096,150" stroke="%238b5cf6" stroke-width="4" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.etapa {
    flex: 1;
    min-height: 300px;
    text-align: left;
    padding: var(--espacamento-lg);
    background: var(--preto-card);
    border: 1px solid rgba(144, 144, 144, 0.15);
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Bordas individuais removidas - agora usando linha contínua no container */

/* Ícone de seta nos cards 1, 2 e 3 */
.etapa:nth-child(1)::after,
.etapa:nth-child(3)::after,
.etapa:nth-child(5)::after {
    content: '▸';
    position: absolute;
    bottom: var(--espacamento-md);
    right: var(--espacamento-md);
    width: 32px;
    height: 32px;
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prata-claro);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    z-index: 5;
}

.etapa-numero {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--prata-claro);
    margin-bottom: var(--espacamento-sm);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(192, 192, 192, 0.3);
}

.etapa h3 {
    color: var(--prata-claro);
    margin-bottom: var(--espacamento-sm);
    font-size: 1.2rem;
    font-weight: 600;
}

.etapa p {
    color: var(--cinza-texto);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.etapa-connector {
    display: none;
}

.cta-center {
    text-align: center;
    margin-top: var(--espacamento-lg);
}

.funcionamento-section .cta-center .btn {
    min-width: 400px;
}

/* ===================================
   11. SEÇÃO FAQ
   =================================== */

.faq-section {
    padding: var(--espacamento-xl) 0;
    background-color: var(--preto-secundario);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--preto-card);
    border-radius: 8px;
    margin-bottom: var(--espacamento-sm);
    overflow: hidden;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all var(--transicao-rapida);
}

.faq-item:hover {
    border-color: var(--prata-medio);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--espacamento-md);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--branco);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transicao-rapida);
}

.faq-question:hover {
    color: var(--prata-claro);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--prata-medio);
    transition: transform var(--transicao-rapida);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--roxo-destaque);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transicao-rapida);
    padding: 0 var(--espacamento-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--espacamento-md) var(--espacamento-md);
}

.faq-answer p {
    color: var(--cinza-texto);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--roxo-destaque);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--prata-claro);
}

/* ===================================
   12. SEÇÃO CTA FINAL
   =================================== */

.cta-final-section {
    padding: var(--espacamento-xl) 0;
    background: linear-gradient(135deg, var(--roxo-hover) 0%, var(--roxo-destaque) 100%);
    color: var(--branco);
    text-align: center;
    position: relative;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/topography-platinum.svg');
    opacity: 0.1;
    pointer-events: none;
}

.cta-final-title {
    font-size: 2.5rem;
    color: var(--branco);
    margin-bottom: var(--espacamento-sm);
    position: relative;
    z-index: 1;
}

.cta-final-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--espacamento-md);
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: var(--prata-claro);
}

.cta-final-section .btn-primary {
    background: var(--branco);
    color: var(--roxo-destaque);
    position: relative;
    z-index: 1;
}

.cta-final-section .btn-primary:hover {
    background: var(--prata-claro);
    transform: translateY(-3px);
}

/* ===================================
   13. FOOTER
   =================================== */

.footer {
    background-color: var(--preto-secundario);
    color: var(--cinza-texto);
    padding: var(--espacamento-md) 0;
    text-align: center;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.footer p {
    margin: 0;
}

/* ===================================
   14. RESPONSIVIDADE - MOBILE
   =================================== */

@media (max-width: 768px) {
    /* Hero */
    .hero-section {
        min-height: 66vh;
    }

    .hero-background {
        background-image: url('../Banner_LP_2.webp');
        opacity: 1;
        background-position: center top;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .logo {
        max-width: 180px;
    }

    .logo-entrevista {
        max-width: 280px;
    }

    /* Tipografia */
    h1 {
        font-size: 2.5rem;
    }

    h2, .section-title {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    /* Botões */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Produtos */
    .produtos-grid {
        grid-template-columns: 1fr;
    }

    /* Descrição - Mobile */
    .descricao-flex-container {
        flex-direction: column;
    }

    .descricao-content {
        text-align: center;
    }

    .coaches-image {
        max-width: 100%;
    }

    /* Temas */
    .temas-grid {
        grid-template-columns: 1fr;
    }

    /* Etapas */
    .etapas-container {
        flex-direction: column;
        gap: 0;
    }

    .etapas-container::before {
        display: none;
    }

    .etapa {
        width: 100%;
        min-height: 280px;
        padding-bottom: calc(var(--espacamento-lg) + 50px);
        border: 1px solid rgba(144, 144, 144, 0.15) !important;
        border-radius: 16px;
    }

    /* Rotacionar setas para baixo no mobile */
    .etapa:nth-child(1)::after,
    .etapa:nth-child(3)::after,
    .etapa:nth-child(5)::after {
        transform: rotate(90deg);
        bottom: var(--espacamento-md);
        right: 50%;
        margin-right: -16px;
    }

    /* Botão da seção funcionamento em largura total */
    .funcionamento-section .cta-center .btn {
        width: 100%;
        min-width: auto;
    }

    /* Floating Button */
    .floating-btn {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }

    /* CTA Final */
    .cta-final-title {
        font-size: 2rem;
    }

    .cta-final-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --espacamento-md: 1.5rem;
        --espacamento-lg: 2rem;
        --espacamento-xl: 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

}

/* ===================================
   15. ANIMAÇÕES E EFEITOS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Shimmer Effect para elementos prata */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}


/* Scroll suave */
html {
    scroll-padding-top: 20px;
}
