﻿/*
Theme Name: LBA Theme Clean
Author: LBA
Version: 1.0
*/

:root {
  --roxo: #463335;
  --marrom: #7A4C2B;
  --terroso: #C49F85;
  --areia: #F4EBDD;
  --creme: #FCF8F3;
  --texto: #2E2424;
  --texto-suave: #6E5A57;
  --linha: rgba(70, 51, 53, 0.14);
  --branco: #FFFFFF;

  --fonte-titulo: 'Playfair Display', serif;
  --fonte-texto: 'Jost', sans-serif;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 45px rgba(70, 51, 53, 0.10);
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-texto);
  color: var(--texto);
  background:
    radial-gradient(circle at top left, rgba(196, 159, 133, 0.18), transparent 35%),
    linear-gradient(180deg, #fdf9f5 0%, #f7efe7 45%, #fcf8f3 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--linha);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--marrom);
  background: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--fonte-titulo);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--roxo);
}

.section-text {
  font-size: 1.07rem;
  color: var(--texto-suave);
  max-width: 760px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--roxo);
  color: var(--branco);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #382829;
}

.btn-secondary {
  background: transparent;
  color: var(--roxo);
  border-color: rgba(70, 51, 53, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(252, 248, 243, 0.82);
  border-bottom: 1px solid rgba(70, 51, 53, 0.08);
}

.header-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--fonte-titulo);
  font-size: 1.2rem;
  color: var(--roxo);
  font-weight: 500;
}

.brand span {
  font-size: 0.88rem;
  color: var(--texto-suave);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 0.96rem;
  color: var(--texto);
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--marrom);
}

.hero {
  padding: 36px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.hero-grid > div:first-child {
  order: 1;
}

.hero-aside {
  position: relative;
  order: 2;
}

.hero-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(70, 51, 53, 0.10);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.95rem, 7.5vw, 5rem);
  line-height: 1.08;
  font-weight: 500;
  color: var(--roxo);
  margin-bottom: 16px;
}

.hero p {
  font-size: clamp(0.97rem, 3.5vw, 1.1rem);
  line-height: 1.72;
  color: var(--texto-suave);
  max-width: 640px;
}

.hero .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.hero .btn-group {
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.hero .btn {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
  justify-content: center;
  padding: 0 20px;
}

.hero .btn-primary {
  font-size: 1.04rem;
  letter-spacing: 0.01em;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}

.hero-point {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--linha);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--texto);
}

.portrait-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(70, 51, 53, 0.10);
  border-radius: 36px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.portrait-placeholder {
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(196, 159, 133, 0.18), rgba(70, 51, 53, 0.10)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 40%),
    #d8c0af;
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 24px;
  color: var(--branco);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-note {
  position: static;
  margin-top: 14px;
  max-width: 100%;
  background: rgba(252, 248, 243, 0.95);
  border: 1px solid rgba(70, 51, 53, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}

.floating-note strong {
  display: block;
  font-size: 0.88rem;
  color: var(--roxo);
  margin-bottom: 6px;
}

.floating-note span {
  display: block;
  font-size: 0.88rem;
  color: var(--texto-suave);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.box-soft {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(70, 51, 53, 0.10);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.quote {
  font-family: var(--fonte-titulo);
  font-size: 1.7rem;
  line-height: 1.3;
  color: var(--roxo);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(70, 51, 53, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.35rem;
  color: var(--roxo);
  margin-bottom: 12px;
  font-weight: 500;
}

.card p {
  color: var(--texto-suave);
  font-size: 1rem;
}

.process {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.15));
  border-top: 1px solid rgba(70, 51, 53, 0.08);
  border-bottom: 1px solid rgba(70, 51, 53, 0.08);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.step {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(70, 51, 53, 0.10);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--roxo);
  color: var(--branco);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 1.08rem;
  color: var(--roxo);
  margin-bottom: 8px;
  font-weight: 600;
}

.step p {
  color: var(--texto-suave);
  font-size: 0.97rem;
}

.cta-wrap {
  text-align: center;
  background: linear-gradient(180deg, rgba(70, 51, 53, 0.98), rgba(58, 41, 42, 0.98));
  color: var(--branco);
  border-radius: 32px;
  padding: 60px 28px;
  box-shadow: var(--shadow-soft);
}

.cta-wrap .section-title {
  color: var(--branco);
  margin-bottom: 16px;
}

.cta-wrap .section-text {
  color: rgba(255, 255, 255, 0.76);
  margin: 0 auto;
}

.cta-wrap .btn-group {
  justify-content: center;
}

.cta-wrap .btn-primary {
  background: var(--areia);
  color: var(--roxo);
}

.cta-wrap .btn-primary:hover {
  background: #f0e0cf;
}

.cta-wrap .btn-secondary {
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer {
  padding: 34px 0 50px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--texto-suave);
  font-size: 0.95rem;
  border-top: 1px solid rgba(70, 51, 53, 0.10);
  padding-top: 24px;
}

@media (max-width: 1024px) {
  .about-grid,
  .cards-3,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .hero-card,
  .box-soft,
  .card,
  .step,
  .cta-wrap {
    padding: 22px;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.7rem);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 28px 0 36px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero .btn {
    min-height: 54px;
    font-size: 0.97rem;
  }
}

@media (min-width: 761px) {
  .hero {
    padding: 60px 0 48px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
  }

  .hero-grid > div:first-child {
    order: unset;
  }

  .hero-aside {
    order: unset;
  }

  .hero .btn-group {
    flex-direction: row;
    gap: 14px;
  }

  .hero .btn {
    width: auto;
    min-height: 52px;
    font-size: 0.96rem;
  }

  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .floating-note {
    position: absolute;
    right: -10px;
    bottom: 26px;
    max-width: 240px;
    margin-top: 0;
    padding: 16px 18px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 5rem);
  }
}

@media (min-width: 1025px) {
  .hero {
    padding: 72px 0 48px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 5vw, 5rem);
  }

  .hero p {
    font-size: 1.1rem;
  }
}
/* ==============================
   Header Evolve / LBA
   ============================== */

.site-header.lba-evolve-header {
    background: #f2eadf;
    border-bottom: 1px solid rgba(106, 112, 76, 0.14);
    box-shadow: none;
}

.lba-evolve-header__inner {
    width: min(1220px, calc(100% - 96px));
    min-height: 108px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.lba-evolve-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    justify-self: start;
}

.lba-evolve-brand__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.9;
}

.lba-evolve-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.lba-evolve-brand__name {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #6A704C;
}

.lba-evolve-brand__subtitle {
    margin-top: 8px;
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.34em;
    text-transform: lowercase;
    color: #C49F85;
}

.lba-evolve-nav {
    justify-self: center;
}

.lba-evolve-nav a {
    font-family: "Jost", sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-decoration: none;
    color: #6A704C;
}

.lba-evolve-header__cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    min-height: 38px;
    padding: 0 24px;
    border: 1px solid #6A704C;
    background: transparent;
    color: #6A704C;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lba-evolve-header__cta:hover {
    background: #6A704C;
    color: #F2EADF;
    transform: translateY(-1px);
}

/* Esconde estilos antiguos del header si quedaron cargados */
.site-header .container.header-wrap,
.site-header .brand,
.site-header .nav {
    all: unset;
}

/* ==============================
   PÃ¡ginas internas / retorno de pago
   ============================== */

.lba-page {
    background: #f2eadf;
    color: #463335;
    min-height: 72vh;
}

.lba-page-hero {
    padding: 86px 24px 18px;
}

.lba-page-content {
    padding: 32px 24px 96px;
}

.lba-page-container {
    width: min(920px, calc(100% - 48px));
    margin: 0 auto;
}

.lba-page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.02;
    font-weight: 500;
    margin: 0;
    color: #463335;
}

.lba-payment-box {
    background: rgba(247, 244, 239, 0.72);
    border: 1px solid rgba(106, 112, 76, 0.22);
    border-radius: 0;
    padding: clamp(30px, 5vw, 52px);
    box-shadow: 0 24px 70px rgba(70, 51, 53, 0.06);
}

.lba-payment-box h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    font-weight: 500;
    margin: 0 0 24px;
    color: #463335;
}

.lba-payment-box p {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 14px;
    color: #463335;
}

.lba-payment-box strong {
    color: #463335;
}

.lba-payment-box .lba-btn,
.lba-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-height: 44px;
    padding: 0 28px;
    border: 1px solid #6A704C;
    background: transparent;
    color: #6A704C;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lba-payment-box .lba-btn:hover,
.lba-btn:hover {
    background: #6A704C;
    color: #F2EADF;
    transform: translateY(-1px);
}

@media (max-width: 780px) {
    .lba-evolve-header__inner {
        width: min(100% - 40px, 1220px);
        min-height: 92px;
        grid-template-columns: 1fr auto;
        gap: 20px;
    }

    .lba-evolve-nav {
        display: none;
    }

    .lba-evolve-brand__name {
        font-size: 17px;
        letter-spacing: 0.08em;
    }

    .lba-evolve-brand__subtitle {
        font-size: 9px;
        letter-spacing: 0.24em;
    }

    .lba-evolve-header__cta {
        min-width: auto;
        min-height: 36px;
        padding: 0 16px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .lba-page-hero {
        padding-top: 64px;
    }

    .lba-page-container {
        width: min(100% - 40px, 920px);
    }
}
