/* ===================================================
   BRENDA KAILANY STUDIO — Estilo do Site
   Paleta: preto, branco, bordô, bege, cinza
   Estilo: old money, editorial, minimalista
=================================================== */

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== VARIÁVEIS ===== */
:root {
    --preto:       #0A0A0A;
    --branco:      #FFFFFF;
    --bordeaux:    #6B1E2E;
    --bege:        #D4C5B0;
    --cinza:       #8C8C8C;
    --fundo-claro: #F5F3F0;
    --fundo-escuro:#111111;

    --serif: 'Cormorant Garamond', serif;
    --sans:  'Montserrat', sans-serif;
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--branco);
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== TIPOGRAFIA ===== */
h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3.5rem, 9vw, 9rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
}

h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
}

h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    line-height: 1.2;
}

em { font-style: italic; }

p {
    font-size: 0.875rem;
    color: var(--cinza);
    line-height: 1.85;
    letter-spacing: 0.02em;
}

/* ===== UTILITÁRIOS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.label {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cinza);
    margin-bottom: 1rem;
}

.label--light {
    color: rgba(255, 255, 255, 0.45);
}

.section__title {
    margin-bottom: 4rem;
}

.section__title--light {
    color: var(--branco);
}

.tag {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--preto);
    padding: 0.25rem 0.7rem;
    margin-top: 1rem;
    color: var(--preto);
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--dark {
    background: var(--preto);
    color: var(--branco);
}
.btn--dark:hover { background: var(--bordeaux); }

.btn--light {
    background: var(--branco);
    color: var(--preto);
}
.btn--light:hover { background: var(--bege); }

.btn--outline {
    background: transparent;
    color: var(--preto);
    border: 1px solid var(--preto);
}
.btn--outline:hover {
    background: var(--preto);
    color: var(--branco);
}

.btn--outline-light {
    background: transparent;
    color: var(--branco);
    border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn--outline-light:hover {
    border-color: var(--branco);
    background: rgba(255, 255, 255, 0.08);
}

.btn--large {
    padding: 1.2rem 3rem;
    font-size: 0.75rem;
}

.btn[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ===== ANIMAÇÃO DE ENTRADA ===== */
.animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVEGAÇÃO ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    transition: padding 0.3s ease;
}

.nav.scrolled {
    padding: 1rem 2rem;
}

.nav__logo {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--branco);
    letter-spacing: 0.12em;
    text-decoration: none;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav__links a {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav__links a:hover {
    color: var(--branco);
}

.nav__cta {
    background: var(--bordeaux) !important;
    color: var(--branco) !important;
    padding: 0.65rem 1.6rem;
    letter-spacing: 0.2em !important;
}

.nav__cta:hover {
    background: #8a2538 !important;
}

.nav__menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

/* ===== HERO ===== */
@keyframes heroTextoEntrar {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

.hero {
    min-height: 100vh;
    background: var(--preto);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 3rem 6rem 6rem;
    animation: heroTextoEntrar 0.9s ease forwards;
}

.hero__image {
    animation: heroFotoEntrar 0.9s ease 0.65s both;
}

.hero__eyebrow {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.hero__title {
    color: var(--branco);
    margin-bottom: 0.5rem;
}

.hero__subtitle {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--bege);
    margin-bottom: 2rem;
}

.hero__tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 3rem;
}

.hero__image {
    position: relative;
    overflow: hidden;
    background: #161616;
}

.hero__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.hero__placeholder span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    opacity: 0.5;
}

/* ===== CATEGORIAS DE SERVIÇOS ===== */
.categoria {
    margin-bottom: 5rem;
}

.categoria__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.categoria__titulo {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--preto);
}

.categoria__titulo span {
    font-weight: 300;
    color: var(--cinza);
}

.categoria__tempo {
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--cinza);
    text-transform: uppercase;
}

/* Grid variantes */
.servicos__grid--3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Preenche célula vazia com branco quando há 5 cards em grade de 3 */
.servicos__grid::after {
    content: '';
    background: var(--branco);
}

.servicos__grid--2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.servicos__grid--4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

.servicos__grid--1 {
    grid-template-columns: 1fr !important;
    max-width: 380px;
}

.preco-detalhe {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--cinza);
    font-family: var(--sans);
    letter-spacing: 0.05em;
}

/* ===== CARD DE SERVIÇO — NOVO LAYOUT ===== */
.servico-card__sub {
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bordeaux);
    margin-bottom: 0.4rem;
}

.servico-card__img--placeholder {
    background: #f0eded !important;
}

.preco-wrapper {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.servico-card__badge {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.22rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.servico-card__badge--exclusivo {
    background: rgba(107, 30, 46, 0.08);
    color: var(--bordeaux);
    border: 1px solid rgba(107, 30, 46, 0.2);
}

.servico-card__badge--tradicional {
    background: rgba(0, 0, 0, 0.04);
    color: var(--cinza);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.servico-card__footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0eded;
}

/* ===== REVELAR PREÇO ===== */

.btn-preco {
    background: none;
    border: none;
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cinza);
    cursor: pointer;
    text-decoration: underline;
    text-align: left;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-preco:hover {
    color: var(--preto);
}

.preco-reveal {
    display: none;
    flex-direction: column;
    gap: 0.1rem;
    animation: fadeIn 0.3s ease;
}

.preco-reveal.visivel {
    display: flex;
}

.preco-reveal span {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--preto);
    line-height: 1;
}

.preco-reveal small {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--cinza);
}

/* ===== BOTÃO WHATSAPP NO CARD ===== */
.btn--wpp {
    background: var(--preto);
    color: var(--branco);
    font-size: 0.6rem;
    padding: 0.7rem 1.2rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn--wpp:hover {
    background: #25D366;
}

/* ===== SOBRE ===== */
.sobre {
    padding: 8rem 0;
    background: var(--fundo-claro);
}

.sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.sobre__text h2 {
    margin: 1rem 0 2rem;
}

.sobre__text p {
    margin-bottom: 1rem;
}

.sobre__stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat {
    border-left: 2px solid var(--bordeaux);
    padding-left: 2rem;
}

.stat__number {
    display: block;
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--preto);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat__label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cinza);
}

/* ===== SERVIÇOS ===== */
.servicos {
    padding: 8rem 0;
}

.servicos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    margin-bottom: 4rem;
}

.servico-card {
    background: var(--branco);
    transition: background 0.3s ease;
    overflow: hidden;
}

.servico-card:hover {
    background: var(--fundo-claro);
}

.servico-card__img {
    width: 100%;
    height: 210px;
    background: var(--fundo-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    overflow: hidden;
}

.servico-card__body {
    padding: 1.5rem;
}

.servico-card h3 {
    color: var(--preto);
    margin-bottom: 0.5rem;
}

.servico-card p {
    font-size: 0.8rem;
}

.servicos__cta {
    text-align: center;
}

/* ===== QUIZ ===== */
.quiz-section {
    padding: 8rem 0;
    background: var(--preto);
    text-align: center;
}

.quiz-intro {
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto 4rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.quiz {
    max-width: 620px;
    margin: 0 auto;
}

.quiz__step {
    display: none;
}

.quiz__step.active {
    display: block;
    animation: quizEntrar 0.35s ease;
}

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

.quiz__question {
    font-family: var(--sans);
    font-size: clamp(1.4rem, 3.5vw, 2.1rem);
    font-style: normal;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 2rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.quiz__options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    counter-reset: opcao;
}

.quiz__option {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.1rem 1.5rem 1.1rem 4.2rem;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-align: left;
    position: relative;
    counter-increment: opcao;
    transition: all 0.22s ease;
    border-radius: 2px;
}

.quiz__option::before {
    content: counter(opcao);
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.4);
    font-size: 0.62rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.7rem;
    display: block;
    transition: all 0.22s ease;
}

.quiz__option:hover {
    background: var(--bordeaux);
    border-color: var(--bordeaux);
    color: var(--branco);
    transform: translateX(6px);
}

.quiz__option:hover::before {
    border-color: rgba(255,255,255,0.6);
    color: var(--branco);
    background: rgba(255,255,255,0.15);
}

.quiz__result {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.quiz__result.active {
    display: block;
}

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

.quiz__result-label {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--bege);
    margin-bottom: 1.5rem;
    display: block;
}

.quiz__result h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--branco);
    margin-bottom: 1.2rem;
}

.quiz__result #resultDesc {
    color: rgba(255, 255, 255, 0.55);
    max-width: 420px;
    margin: 0 auto 2.5rem;
    font-size: 0.85rem;
}

.quiz__restart {
    display: block;
    margin: 1.5rem auto 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.quiz__restart:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== QUIZ — NOVOS ELEMENTOS ===== */
.quiz__progress-label {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bordeaux);
    background: rgba(184,51,79,0.15);
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.quiz__dica {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.42);
    margin-bottom: 1.8rem;
    margin-top: -1rem;
    line-height: 1.6;
}

/* Cards de opção (passo 0 e formato do olho) */
.quiz__options--cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.quiz__options--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

.quiz__option-card {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--branco);
    padding: 2.2rem 1.2rem 1.8rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    font-family: var(--sans);
    border-radius: 4px;
}

.quiz__option-card:hover {
    background: rgba(184,51,79,0.18);
    border-color: var(--bordeaux);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(184,51,79,0.25);
}

.quiz__card-icon {
    font-size: 1.4rem;
    color: var(--bege);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.quiz__option-card strong {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 700;
    display: block;
    color: var(--branco);
    letter-spacing: 0.02em;
}

.quiz__option-card small {
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.03em;
    line-height: 1.5;
    display: block;
}

/* Formas de olho CSS */
.quiz__eye-shape {
    width: 56px;
    height: 24px;
    border: 2px solid rgba(255,255,255,0.5);
    margin: 0 auto 1rem;
    position: relative;
}

.quiz__eye-shape--amendoado {
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.quiz__eye-shape--pequeno {
    width: 38px;
    height: 18px;
    border-radius: 50%;
}

.quiz__eye-shape--grande {
    width: 52px;
    height: 36px;
    border-radius: 50%;
}

.quiz__eye-shape--fino {
    width: 68px;
    height: 14px;
    border-radius: 50%;
}

/* Seta nas opções de alinhamento */
.quiz__opt-arrow {
    display: inline-block;
    width: 1.8rem;
    color: var(--bege);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Resultado em blocos */
.quiz__result-bloco {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    margin-bottom: 1.2rem;
    text-align: left;
    animation: fadeIn 0.5s ease;
}

.quiz__result-categoria {
    display: inline-block;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--bege);
    border-bottom: 1px solid rgba(212,197,176,0.3);
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
}

.quiz__result-bloco h3 {
    font-family: var(--sans);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--branco);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.quiz__result-bloco p {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.quiz__result-bloco .btn {
    margin-top: 0.5rem;
}

.quiz__result-upgrade {
    background: rgba(212,197,176,0.08);
    border-left: 2px solid var(--bege);
    padding: 0.7rem 1rem !important;
    font-size: 0.76rem !important;
    color: var(--bege) !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.6 !important;
}

.quiz__aviso {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

/* Responsivo quiz */
@media (max-width: 600px) {
    .quiz__options--cards {
        grid-template-columns: 1fr;
    }
    .quiz__options--grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== PORTFÓLIO ===== */
.portfolio {
    padding: 8rem 0;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 3rem;
}

.portfolio__item {
    aspect-ratio: 1 / 1;
    background: var(--fundo-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #bbb;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    transition: opacity 0.3s ease;
}

.portfolio__item:hover {
    opacity: 0.85;
}

.portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio__cta {
    text-align: center;
}

/* ===== CURSOS ===== */
.cursos {
    padding: 8rem 0;
    background: var(--fundo-claro);
}


.cursos__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cursos__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Tons de bordô por card */
.curso-card--tom-1 { --cor: #B8334F; }
.curso-card--tom-2 { --cor: #6B1E2E; }
.curso-card--tom-3 { --cor: #8B4560; }

.curso-card {
    background: var(--branco);
    padding: 2.5rem;
    border: 1px solid #e8e3de;
    display: flex;
    flex-direction: column;
    --cor: var(--bordeaux);
}

.curso-card--em-breve {
    opacity: 0.55;
}

.curso-card__badge {
    display: inline-block;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--cor);
    color: var(--branco);
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.curso-card__badge--soon {
    background: #e8e3de;
    color: rgba(0,0,0,0.4);
}

.curso-card h3 {
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    color: var(--preto);
    margin-bottom: 0.8rem;
    line-height: 1.1;
    font-weight: 300;
}

.heading-cor {
    color: var(--cor);
    font-style: italic;
}

.curso-card__sub {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cor);
    margin-bottom: 1rem;
}

.curso-card__frase {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.55);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.curso-card__frase em {
    color: var(--cor);
    font-style: italic;
    font-weight: 400;
}

.curso-card p {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.55);
    margin-bottom: 1.2rem;
    line-height: 1.85;
}

.curso-card__detalhe {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.45);
    background: #f0eded;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-radius: 2px;
}

.curso-card__secao-titulo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.5rem 0 0.8rem;
}

.curso-card__secao-titulo span {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--cor);
    white-space: nowrap;
}

.curso-card__secao-titulo::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0dbd5;
}

.curso-card__box-incluso {
    background: #0a0a0a;
    border-left: 3px solid var(--cor);
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.5rem;
}

.curso-card__lista {
    list-style: none;
    margin-bottom: 1.5rem;
}

/* Check circular */
.curso-card__lista--check li {
    position: relative;
    padding: 0.55rem 0 0.55rem 2.4rem;
    font-size: 0.8rem;
    color: rgba(0,0,0,0.8);
    border-bottom: 1px solid #eeebe8;
}

.curso-card__lista--check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: var(--cor);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    display: block;
    text-align: center;
    line-height: 1.35rem;
}

/* Seta conteúdo */
.curso-card__lista--conteudo li {
    font-size: 0.78rem;
    color: rgba(0,0,0,0.6);
    padding: 0.45rem 0;
    border-bottom: 1px solid #eeebe8;
}

.curso-card__lista--conteudo li::before {
    content: '→  ';
    color: var(--cor);
    font-weight: 700;
}

/* Bônus */
.curso-card__lista--bonus {
    background: rgba(0,0,0,0.02);
    border-left: 2px solid var(--cor) !important;
    padding-left: 0.8rem !important;
}

.curso-card__lista--bonus::before {
    content: '→  ' !important;
    color: var(--cor) !important;
}

.bonus-tag {
    display: inline-block;
    font-size: 0.44rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    background: var(--cor);
    color: var(--branco);
    padding: 0.15rem 0.5rem;
    vertical-align: middle;
    margin-left: 0.4rem;
    border-radius: 2px;
}

/* Botão CTA verde */
.btn-curso-cta {
    display: block;
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: #1A9E55;
    color: #fff;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: auto;
}

.btn-curso-cta:hover {
    background: #14793f;
    transform: translateY(-2px);
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
    padding: 8rem 0 0;
}

.localizacao .container {
    padding-bottom: 3rem;
}

.localizacao__endereco {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--cinza);
    text-transform: uppercase;
    margin-top: 1rem;
}

.localizacao__mapa {
    width: 100%;
    line-height: 0;
}

.localizacao__mapa iframe {
    display: block;
    width: 100%;
}

/* ===== AGENDAMENTO ===== */
.agendar {
    padding: 8rem 0;
    background: var(--bordeaux);
    text-align: center;
}

.agendar__text {
    color: rgba(255, 255, 255, 0.65);
    max-width: 380px;
    margin: 0 auto 3.5rem;
    font-size: 0.88rem;
    line-height: 2;
}

.agendar__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RODAPÉ ===== */
.footer {
    background: var(--preto);
    padding: 5rem 0 4rem;
    text-align: center;
}

.footer__logo {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--branco);
    letter-spacing: 0.18em;
    margin-bottom: 0.5rem;
}

.footer__brand {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.4rem;
}

.footer__location {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 2rem;
}

.footer__links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.footer__links a {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--branco);
}

.footer__links span {
    color: rgba(255, 255, 255, 0.2);
}

.footer__quote {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero__content {
        padding: 6rem 2rem 4rem;
        text-align: center;
        align-items: center;
    }

    .hero__image {
        height: 75vw;
        min-height: 420px;
    }

    .sobre__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .servicos__grid {
        grid-template-columns: 1fr 1fr;
    }

    .servico-card__img {
        height: 240px;
    }

    .servico-card__img img {
        object-fit: contain;
    }

    .servicos__grid--3,
    .servicos__grid--4 {
        grid-template-columns: 1fr 1fr !important;
    }

    .servicos__grid--1 {
        max-width: 100% !important;
    }

    .cursos__grid,
    .cursos__grid--3 {
        grid-template-columns: 1fr;
    }

    .categoria__header {
        flex-direction: column;
        gap: 0.4rem;
    }

    .nav__links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav__links.open {
        display: flex;
    }

    .nav__menu-btn {
        display: block;
    }
}

@media (max-width: 600px) {
    .servicos__grid,
    .servicos__grid--2,
    .servicos__grid--3 {
        grid-template-columns: 1fr !important;
    }

    .servicos__grid--1 {
        max-width: 100% !important;
    }

    .portfolio__grid {
        grid-template-columns: 1fr 1fr;
    }

    .agendar__buttons {
        flex-direction: column;
        align-items: center;
    }

    .sobre {
        padding: 5rem 0;
    }

    .servicos,
    .quiz-section,
    .portfolio,
    .cursos,
    .agendar {
        padding: 5rem 0;
    }

    .curso-card {
        padding: 2rem;
    }

    .servico-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 390px) {
    .hero__content {
        padding: 5.5rem 1.5rem 3.5rem;
    }

    .hero__title {
        font-size: clamp(3rem, 18vw, 5rem);
    }

    .hero__image {
        height: 80vw;
        min-height: 340px;
    }
}
