/**
 * Estilos Principais da Landing Page - Coordenação de Projetos
 * 
 * Este arquivo define o design system da aplicação, utilizando variáveis CSS para cores,
 * espaçamentos e tipografia. O foco é uma estética premium, moderna e profissional.
 * 
 * Fluxo de Dados:
 * - Variáveis globais (:root) definem os tokens de design.
 * - Classes utilitárias tratam de layout e espaçamento.
 * - Seções específicas aplicam estilos baseados na estratégia de conversão.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Montserrat:wght@700;800&display=swap');

section {
    position: relative;
}

:root {
    /* Color Palette - Requested Style */
    --primary: #000000;
    --primary-light: #050505;
    --secondary: #003785;
    --accent: #FFFFFF;
    --text-main: #FFFFFF;
    --text-muted: #CCCCCC;
    --bg-main: #000000;
    --white: #FFFFFF;
    --success: #28a745;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-title: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-max-width: 1100px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-title);
    font-weight: 800;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Components */
.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

/* Botão Voltar ao Topo Minimalista */
.btn-back-home {
    position: absolute;
    bottom: 30px;
    right: 40px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    transition: var(--transition-smooth);
}

.btn-back-home:hover {
    color: #E6AD12;
    transform: translateY(-5px);
}

.btn-back-home::before {
    content: "↑";
    font-size: 1.2rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 173, 18, 0.4);
    filter: brightness(1.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--white);
}

/* Hero Specifics - Dual Column */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.hero h1 span {
    display: block;
    font-size: 4.2rem;
    font-weight: 800;
    color: #E6AD12;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Service Buttons */
.services-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-decoration: underline;
}

.service-btn {
    display: block;
    width: fit-content;
    min-width: 320px;
    padding: 12px 30px;
    background: var(--secondary);
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Profile Image with Glow */
.profile-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-glow-container {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    padding: 10px;
    background: #000;
    margin-bottom: 2rem;
}

.profile-glow-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: conic-gradient(from 0deg,
            #64FFDA,
            #E6AD12,
            #64FFDA,
            #003785,
            #64FFDA);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: -1;
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.profile-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #000;
    position: relative;
    z-index: 1;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.3);
    /* Dá o zoom na imagem, destacando o rosto/microfone */
}

.cta-profile {
    background: var(--secondary);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 800;
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 55, 133, 0.4);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Lâmina 02: Sobre Mim */
.section-sobre {
    position: relative;
    padding: 100px 20px;
    background-color: #0d0d0d;
    /* Tom uniforme ligeiramente acima do preto absoluto */
    background-image: url('assets/engrenagem%20-%20png.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sobre-bg-text {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    letter-spacing: 15px;
}

.sobre-grid {
    display: block;
    position: relative;
    z-index: 1;
}

.sobre-content {
    max-width: 800px;
    width: 65%;
}

.sobre-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.sobre-content p {
    font-size: 1.15rem;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

@media (max-width: 900px) {
    .section-sobre {
        background-position: right bottom;
        background-size: 50%;
        background-blend-mode: overlay;
    }

    .sobre-bg-text {
        font-size: 7rem;
        left: 5%;
        letter-spacing: 5px;
    }

    .sobre-content {
        width: 100%;
    }
}

/* Lâmina 03: JGP */
.section-jgp {
    position: relative;
    padding: 100px 20px;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/rafael%20plano%20de%20fundo.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.jgp-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jgp-title {
    font-size: 3rem;
    font-weight: 900;
    color: #E6AD12;
    /* Amarelo característico do JGP */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.jgp-desc {
    font-size: 1.15rem;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
}

.jgp-clique {
    font-family: inherit;
    font-style: italic;
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.circle-link {
    text-decoration: none;
    display: inline-block;
    border-radius: 50%;
}

.jgp-image-glow {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #000;
    /* Fundo preto puro para mesclar com a imagem */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid #E6AD12;
    box-shadow: 0 0 40px rgba(230, 173, 18, 0.4);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.jgp-image-glow:hover {
    transform: scale(1.05);
}

.img-jgp {
    width: 92%;
    /* Tamanho ideal para as letras não tocarem no aro amarelo */
    height: 92%;
    object-fit: cover;
    border-radius: 50%;
    /* Recorta o fundo quadrado do PNG original */
}

.btn-jgp-plano {
    display: inline-block;
    padding: 20px 60px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-jgp-plano:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

@media (max-width: 768px) {
    .jgp-title {
        font-size: 2rem;
    }
}

/* Lâmina 04: Cursos */
.section-cursos {
    position: relative;
    padding: 100px 20px;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/rafael%20plano%20de%20fundo.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cursos-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cursos-title {
    font-size: 3rem;
    font-weight: 900;
    color: #E6AD12;
    margin-bottom: 2.5rem;
    /* Aumentado de 1rem */
    text-transform: uppercase;
}

.cursos-clique {
    font-family: inherit;
    font-style: italic;
    color: #fff;
    margin-bottom: 25px;
    /* Aumentado de 10px */
    font-size: 1.2rem;
}

.cursos-image-glow {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid #E6AD12;
    box-shadow: 0 0 40px rgba(230, 173, 18, 0.4);
    margin-bottom: 4.5rem;
    /* Aumentado de 3rem */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cursos-image-glow:hover {
    transform: scale(1.05);
}

.img-cursos {
    width: 92%;
    height: 92%;
    object-fit: cover;
    border-radius: 50%;
}

.cursos-info-box {
    display: inline-block;
    padding: 30px 60px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cursos-info-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

.cursos-info-box p {
    margin: 0;
    line-height: 1.6;
}

.cursos-info-box .info-highlight {
    font-weight: 700;
}

@media (max-width: 768px) {
    .cursos-title {
        font-size: 2.2rem;
    }

    .cursos-image-glow {
        width: 300px;
        height: 300px;
    }
}

/* Glassmorphism Cards */
.card {
    background: rgba(23, 42, 69, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
}

/* Lâmina 05: Mentoria */
.section-mentoria {
    padding: 100px 20px;
    background: #000;
    overflow: hidden;
}

.mentoria-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mentoria-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-mentoria {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 150px 150px 20px 150px;
    /* Recorte orgânico conforme mockup */
    filter: grayscale(100%) contrast(1.1);
    /* Estilo monocromático da referência */
    display: block;
}

.mentoria-card {
    flex: 1;
    background: #fff;
    padding: 60px 50px;
    border-radius: 40px;
    text-align: center;
    color: #003785;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 500px;
}

.mentoria-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: #003785;
}

.mentoria-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #333;
    text-align: center;
}

.mentoria-text p {
    margin-bottom: 1.2rem;
}

.btn-mentoria-saiba {
    display: inline-block;
    padding: 18px 60px;
    background: #003785;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-mentoria-saiba:hover {
    background: #002a66;
    transform: translateY(-3px);
}

@media (max-width: 968px) {
    .mentoria-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .img-mentoria {
        max-width: 350px;
    }

    .mentoria-card {
        padding: 40px 30px;
    }

    .mentoria-title {
        font-size: 2.2rem;
    }
}

/* Lâmina 06: Livro */
.section-livro {
    padding: 100px 20px;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('assets/plano%20de%20fundo%20atendimento.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.livro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.livro-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.livro-mockup {
    width: 100%;
    max-width: 480px;
    /* Aumentado levemente para destacar a nova capa */
    margin-bottom: 4rem;
    perspective: 1000px;
    transition: transform 0.5s ease;
}

.livro-mockup:hover {
    transform: translateY(-10px) scale(1.02);
}

.img-livro {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(255, 255, 255, 0.15));
    /* Moldura de luz/sombra mais forte */
    border-radius: 4px;
    /* Pequeno arredondamento para parecer papel/capa */
}

.livro-cta {
    margin-bottom: 3rem;
}

.btn-reserva-livro {
    display: inline-block;
    padding: 18px 60px;
    background: #fff;
    color: #000;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid #fff;
}

.btn-reserva-livro:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px);
}

.livro-footer-text {
    font-family: inherit;
    font-weight: 300;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 1px;
    max-width: 90%;
    opacity: 0.8;
}

/* Lâmina 07: Depoimentos */
.section-depoimentos {
    padding: 100px 20px;
    background: #000;
}

.depoimentos-title {
    font-size: 3.5rem;
    /* Conforme print, um pouco maior */
    color: #E6AD12;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 900;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 173, 18, 0.3);
}

.depoimento-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #eee;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.depoimento-author {
    color: #E6AD12;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .depoimentos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-title {
        font-size: 2.5rem;
    }

    /* Lâmina 06: Livro - Restaurado */
    .livro-title {
        font-size: 2.5rem;
    }

    .btn-em-breve {
        padding: 12px 50px;
        font-size: 1.2rem;
    }

    .livro-footer-text {
        font-size: 1rem;
    }
}

/* Lâmina 08: Atendimento */
.section-atendimento {
    padding: 120px 20px;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/plano%20de%20fundo%20atendimento.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.atendimento-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.atendimento-info {
    flex: 1;
    text-align: left;
}

.atendimento-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 3rem;
    text-transform: none;
}

.contato-lista {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contato-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contato-label {
    font-size: 0.9rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.contato-link {
    font-size: 1.4rem;
    color: #bbb;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
    transition: color 0.3s ease;
}

.contato-link:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.social-icon {
    color: #bbb;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}

.atendimento-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.img-fragmentada {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

@media (max-width: 1024px) {
    .atendimento-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .atendimento-grid {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        width: 100%;
        max-width: 100%;
    }

    .atendimento-info {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .atendimento-title {
        font-size: 2.5rem;
    }

    .contato-lista {
        align-items: center;
    }

    .atendimento-visual {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .img-fragmentada {
        width: min(100%, 400px);
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Main Footer */
.main-footer {
    padding: 60px 20px;
    text-align: center;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('assets/plano%20de%20fundo%20atendimento.png');
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    font-family: 'Aliens and Cow', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        order: 1;
    }

    .profile-area {
        order: 2;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }
}