/* ==========================================================================
   DESIGN SYSTEM — VARIÁVEIS
   ========================================================================== */
:root {
    --color-bg:          #FDFBF7;
    --color-bg-alt:      #F7F4EE;
    --color-dark:        #4A2E2B;
    --color-dark-hover:  #5E3A36;
    --color-gold:        #C5A880;
    --color-gold-light:  rgba(197, 168, 128, 0.12);
    --color-gold-border: rgba(197, 168, 128, 0.3);
    --color-text:        #2A1F1D;
    --color-text-muted:  #7A6A65;
    --color-white:       #FFFFFF;
    --color-border:      rgba(197, 168, 128, 0.22);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --radius-sm:   6px;
    --radius-md:   14px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-pill: 100px;

    --shadow-sm:   0 2px 8px rgba(74, 46, 43, 0.06);
    --shadow-card: 0 8px 32px rgba(74, 46, 43, 0.07);
    --shadow-card-hover: 0 20px 56px rgba(74, 46, 43, 0.13);
    --shadow-btn:  0 4px 18px rgba(74, 46, 43, 0.22);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --max-width: 1180px;
    --header-h:  72px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.w-full { width: 100%; }

.pretitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.9rem;
}

.pretitle--light {
    color: rgba(197, 168, 128, 0.8);
}

.pretitle--center {
    display: block;
    text-align: center;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section__title--light {
    color: var(--color-white);
}

.section__subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 3rem auto;
}

.section__header {
    margin-bottom: 0.5rem;
}

/* Italic gold accent in titles */
.title-em-gold {
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
}

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in-section {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Fade-up via IntersectionObserver */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.dores__item:nth-child(2)  { transition-delay: 0.06s; }
.dores__item:nth-child(3)  { transition-delay: 0.12s; }
.dores__item:nth-child(4)  { transition-delay: 0.18s; }
.dores__item:nth-child(5)  { transition-delay: 0.24s; }
.dores__item:nth-child(6)  { transition-delay: 0.30s; }

.como-funciona__step:nth-child(2) { transition-delay: 0.1s; }
.como-funciona__step:nth-child(3) { transition-delay: 0.2s; }
.como-funciona__step:nth-child(4) { transition-delay: 0.3s; }

.pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-card:nth-child(3) { transition-delay: 0.2s; }

.timeline__item:nth-child(2) { transition-delay: 0.15s; }
.timeline__item:nth-child(3) { transition-delay: 0.3s; }

.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
    background-color: var(--color-dark-hover);
    border-color: var(--color-dark-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(74, 46, 43, 0.32);
}

/* Ghost com borda dourada — hero */
.btn--ghost-gold {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.btn--ghost-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.35);
}

.btn--ghost {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-border);
}

.btn--ghost:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background-color: transparent;
    color: var(--color-dark);
    border-color: rgba(74, 46, 43, 0.25);
}

.btn--outline-dark:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-btn);
}

.btn--pill-cta {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
    box-shadow: var(--shadow-btn);
}

.btn--pill-cta:hover {
    background-color: var(--color-dark-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 46, 43, 0.3);
}

.btn--lg {
    padding: 0.9rem 2rem;
    font-size: 0.92rem;
}

.btn--xl {
    padding: 1rem 2.6rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background-color: rgba(253, 251, 247, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header--scrolled {
    background-color: rgba(253, 251, 247, 0.97);
    border-bottom-color: var(--color-border);
    box-shadow: 0 4px 24px rgba(74, 46, 43, 0.06);
}

.header__inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--color-gold-border);
    transition: var(--transition);
}

.header__logo-img:hover {
    transform: scale(1.06);
    box-shadow: 0 0 0 4px var(--color-gold-light);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding-bottom: 2px;
    letter-spacing: 0.1px;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.header__nav-link:hover {
    color: var(--color-dark);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__cta {
    flex-shrink: 0;
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
}

/* Hamburger */
.nav-toggle { display: none; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    z-index: 1010;
}

.nav-hamburger span {
    display: block;
    height: 1.5px;
    width: 100%;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-h);
    display: flex;
    align-items: center;
    background-color: var(--color-bg);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.hero__title-em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    font-size: 1.05em;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.85;
    max-width: 480px;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__metrics {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.2px;
    padding: 0.85rem 0;
    border-top: 1px solid var(--color-border);
    width: 100%;
    max-width: 480px;
}

.hero__metrics-dot {
    color: var(--color-gold);
    font-size: 1rem;
    line-height: 1;
}

/* Foto + Badges */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__photo-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
}

/* Moldura dourada deslocada */
.hero__photo-frame {
    position: absolute;
    inset: 14px -14px -14px 14px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.2) 0%, rgba(197, 168, 128, 0.06) 100%);
    border: 1px solid rgba(197, 168, 128, 0.28);
    z-index: 0;
}

.hero__photo {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 72px rgba(74, 46, 43, 0.16);
}

/* Badge inferior integrado */
.hero__photo-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(74, 46, 43, 0.92) 0%, rgba(74, 46, 43, 0.6) 60%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 2.5rem 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero__photo-badge-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

.hero__photo-badge-role {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
}

/* Mini-cards flutuantes */
.hero__badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(197, 168, 128, 0.22);
    border-radius: var(--radius-md);
    padding: 0.65rem 1rem;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    animation: float 3.5s ease-in-out infinite;
    backdrop-filter: blur(8px);
}

.hero__badge--top {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero__badge--bottom {
    bottom: 14%;
    right: -8%;
    animation-delay: 1.8s;
}

.hero__badge-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.hero__badge-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
}

.hero__badge-sub {
    display: block;
    font-size: 0.68rem;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

/* ==========================================================================
   SEÇÃO GENÉRICA
   ========================================================================== */
.section {
    padding: 120px 0;
}

/* ==========================================================================
   DORES EM RESULTADOS — BENTO GRID
   ========================================================================== */
.dores {
    background-color: var(--color-bg);
}

.dores__header {
    margin-bottom: 3.5rem;
}

.dores__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.dores__item {
    background-color: var(--color-bg);
    padding: 2.2rem 2rem;
    transition: var(--transition);
    position: relative;
}

.dores__item:hover {
    background-color: var(--color-white);
    z-index: 1;
    box-shadow: 0 0 0 1px rgba(197, 168, 128, 0.2);
}

.dores__item--accent {
    background-color: var(--color-dark);
}

.dores__item--accent:hover {
    background-color: var(--color-dark-hover);
}

.dores__item-inner {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.dores__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--color-gold-light);
    border: 1px solid var(--color-gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    margin-top: 2px;
    transition: var(--transition);
}

.dores__item:hover .dores__icon {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.dores__item--accent .dores__icon,
.dores__item--accent:hover .dores__icon {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(197, 168, 128, 0.3);
    color: var(--color-gold);
}

.dores__icon--light {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(197, 168, 128, 0.25) !important;
    color: var(--color-gold) !important;
}

.dores__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.dores__title--light {
    color: var(--color-white);
}

.dores__text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.dores__text--light {
    color: rgba(253, 251, 247, 0.65);
}

/* ==========================================================================
   COMO FUNCIONA — STEPS
   ========================================================================== */
.como-funciona {
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.como-funciona::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.como-funciona__header {
    margin-bottom: 4rem;
}

.como-funciona__header .pretitle {
    color: rgba(197, 168, 128, 0.8);
}

.como-funciona__header .section__title {
    color: var(--color-white);
}

.como-funciona__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.como-funciona__step {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    transition: var(--transition);
    position: relative;
}

.como-funciona__step:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(197, 168, 128, 0.3);
    transform: translateY(-4px);
}

.como-funciona__step-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.como-funciona__step:hover .como-funciona__step-icon {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.como-funciona__step-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.15);
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -1px;
}

.como-funciona__step-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.como-funciona__step-text {
    font-size: 0.86rem;
    color: rgba(253, 251, 247, 0.6);
    line-height: 1.75;
}

/* ==========================================================================
   SOBRE / CURRÍCULO — DARK SECTION
   ========================================================================== */
.about {
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.about__top {
    margin-bottom: 4rem;
}

.about__col-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--color-gold), rgba(197, 168, 128, 0.15));
}

.timeline__item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: -1.5rem;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--color-gold);
    border: 2px solid var(--color-dark);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
    transform: translateX(-4px);
}

.timeline__period {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.timeline__company {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.timeline__role {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(253, 251, 247, 0.5);
    font-style: italic;
}

.timeline__desc {
    font-size: 0.86rem;
    color: rgba(253, 251, 247, 0.6);
    line-height: 1.75;
}

/* Formation */
.about__formation {
    padding: 1.4rem 1.6rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.18);
    border-radius: var(--radius-md);
}

.about__formation-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.about__formation-text {
    font-size: 0.9rem;
    color: var(--color-white);
    line-height: 1.5;
}

.about__formation-text strong {
    font-weight: 600;
}

.about__formation-langs {
    font-size: 0.8rem;
    color: rgba(253, 251, 247, 0.5);
    margin-top: 0.3rem;
}

/* Skills */
.about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.about__tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(253, 251, 247, 0.8);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.22);
    border-radius: var(--radius-pill);
    transition: var(--transition);
    cursor: default;
    letter-spacing: 0.1px;
}

.about__tag:hover {
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--color-gold);
    border-color: rgba(197, 168, 128, 0.4);
}

/* Stats */
.about__stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: rgba(197, 168, 128, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.about__stat {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 1.4rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.about__stat:hover {
    background-color: rgba(255, 255, 255, 0.07);
}

.about__stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about__stat-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(253, 251, 247, 0.5);
    font-weight: 400;
    line-height: 1.3;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* ==========================================================================
   PLANOS / PRICING
   ========================================================================== */
.pricing {
    background-color: var(--color-bg-alt);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: end;
    margin-top: 1rem;
}

.pricing-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card--featured {
    border: 1.5px solid var(--color-gold);
    background: linear-gradient(160deg, #ffffff 0%, rgba(197, 168, 128, 0.04) 100%);
    box-shadow: 0 16px 56px rgba(197, 168, 128, 0.16);
    transform: translateY(-12px);
    padding-top: 2.8rem;
}

.pricing-card--featured:hover {
    transform: translateY(-18px);
    box-shadow: 0 28px 64px rgba(197, 168, 128, 0.22);
}

.pricing-card__badge-top {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-dark) 0%, #6B3F3B 100%);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 0.35rem 1.2rem;
    white-space: nowrap;
}

.pricing-card__badge-top span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
}

.pricing-card__tier {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.4rem;
}

.pricing-card__tier--gold {
    color: var(--color-gold);
}

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.4rem;
    line-height: 1.1;
}

.pricing-card__desc {
    font-size: 0.86rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.pricing-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.pricing-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.86rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.pricing-card__list-highlight {
    font-weight: 600;
    color: var(--color-dark) !important;
}

.check-icon {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing__note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 2.5rem;
    opacity: 0.7;
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testimonials {
    background-color: var(--color-bg);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(197, 168, 128, 0.35);
}

.testimonial-card__stars {
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.testimonial-card__name {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
}

.testimonial-card__role {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: 0.1rem;
}

/* ==========================================================================
   CTA + FAQ — LAYOUT ASSIMÉTRICO
   ========================================================================== */
.cta-faq-section {
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.cta-faq-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.cta-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

/* CTA Esquerda */
.cta-faq-left {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
}

.cta-faq-left .pretitle {
    color: rgba(197, 168, 128, 0.8);
}

.cta-faq-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.cta-faq-subtitle {
    font-size: 0.95rem;
    color: rgba(253, 251, 247, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-faq-btn {
    margin-bottom: 2rem;
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
    font-weight: 700;
}

.cta-faq-btn:hover {
    background-color: #d4b990;
    border-color: #d4b990;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(197, 168, 128, 0.4);
}

.cta-faq-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.cta-faq-contacts a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.55);
    transition: var(--transition);
}

.cta-faq-contacts a:hover {
    color: var(--color-gold);
}

.cta-faq-contacts svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* FAQ Direita */
.cta-faq-right .pretitle {
    color: rgba(197, 168, 128, 0.8);
}

.cta-faq-right-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.faq__list {
    display: flex;
    flex-direction: column;
}

.faq__item {
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    overflow: hidden;
}

.faq__item:first-child {
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(253, 251, 247, 0.85);
    cursor: pointer;
    list-style: none;
    gap: 1rem;
    transition: var(--transition);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question:hover {
    color: var(--color-gold);
}

.faq__arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.3);
    background-color: rgba(197, 168, 128, 0.1);
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.faq__arrow::before,
.faq__arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 1.5px;
    background-color: var(--color-gold);
    border-radius: 2px;
    transition: var(--transition);
}

.faq__arrow::before {
    transform: translate(-50%, -50%) rotate(45deg) translateX(-2.5px);
}

.faq__arrow::after {
    transform: translate(-50%, -50%) rotate(-45deg) translateX(2.5px);
}

details[open] .faq__arrow {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

details[open] .faq__arrow::before,
details[open] .faq__arrow::after {
    background-color: var(--color-dark);
}

details[open] .faq__arrow::before {
    transform: translate(-50%, -50%) rotate(-45deg) translateX(-2.5px);
}

details[open] .faq__arrow::after {
    transform: translate(-50%, -50%) rotate(45deg) translateX(2.5px);
}

.faq__answer {
    padding-bottom: 1.3rem;
}

.faq__answer p {
    font-size: 0.88rem;
    color: rgba(253, 251, 247, 0.55);
    line-height: 1.85;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #3A2220;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    margin-bottom: 2rem;
}

.footer__logo {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(197, 168, 128, 0.3);
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.5);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer__motto {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(197, 168, 128, 0.45);
    text-transform: uppercase;
}

.footer__links-title {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a,
.footer__contact a {
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.5);
    transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--color-gold);
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: rgba(253, 251, 247, 0.25);
    font-weight: 300;
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP — COM PULSO
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.25);
    animation: whatsapp-pulse 2s ease-in-out infinite 0.4s;
}

@keyframes whatsapp-pulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

/* Tablet grande */
@media (max-width: 1100px) {
    .hero__grid {
        gap: 3.5rem;
    }

    .about__grid {
        gap: 3.5rem;
    }

    .cta-faq-layout {
        gap: 4rem;
    }

    .como-funciona__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 900px) {
    .section {
        padding: 80px 0;
    }

    /* Hero */
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .hero__copy {
        align-items: center;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__metrics {
        justify-content: center;
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__photo-wrap {
        max-width: 340px;
        margin: 0 auto;
    }

    .hero__badge--top {
        left: -4%;
    }

    .hero__badge--bottom {
        right: -4%;
    }

    /* Dores */
    .dores__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Como funciona */
    .como-funciona__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Pricing */
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* CTA + FAQ */
    .cta-faq-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .cta-faq-left {
        position: static;
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer__brand {
        grid-column: span 2;
    }

    /* About stats */
    .about__stat-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header mobile */
    .nav-hamburger {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-bg);
        border-left: 1px solid var(--color-border);
        box-shadow: -8px 0 32px rgba(74, 46, 43, 0.1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--header-h) + 2rem) 2rem 2rem 2rem;
        gap: 0;
        z-index: 1005;
        transition: var(--transition);
    }

    .header__nav-link {
        display: block;
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--color-border);
        color: var(--color-text);
    }

    .header__nav-link::after { display: none; }

    .nav-toggle:checked ~ .header__inner .header__nav {
        right: 0;
    }

    .nav-toggle:checked ~ .header__inner .nav-hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked ~ .header__inner .nav-hamburger span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle:checked ~ .header__inner .nav-hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: var(--header-h);
    }

    /* Dores */
    .dores__grid {
        grid-template-columns: 1fr;
    }

    /* Como funciona */
    .como-funciona__grid {
        grid-template-columns: 1fr;
    }

    /* Sections */
    .section {
        padding: 64px 0;
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
    }

    .footer__brand {
        grid-column: span 1;
    }

    /* Timeline header */
    .timeline__header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline__tags {
        flex-direction: row;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__badge {
        padding: 0.5rem 0.8rem;
    }

    .hero__badge-label {
        font-size: 0.72rem;
    }

    .hero__badge-sub {
        display: none;
    }

    .hero__badge--top {
        left: 0;
        top: 4%;
    }

    .hero__badge--bottom {
        right: 0;
        bottom: 4%;
    }

    .section__title {
        font-size: 1.85rem;
    }

    .cta-faq-title {
        font-size: 1.8rem;
    }

    .about__stat-row {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .testimonials__grid {
        max-width: 100%;
    }

    .cta-faq-layout {
        gap: 2.5rem;
    }
}
