:root {
    --teal-dark: #080808;
    --teal: #0f0f0f;
    --teal-mid: #141414;
    --teal-light: #1a1a1a;
    --gold: #c9973a;
    --gold-light: #e8b84b;
    --gold-bright: #f5d06e;
    --white: #ffffff;
    --off-white: #f8f4ee;
    --text-light: #e8dcc8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: var(--white);
    overflow-x: hidden;
  }

  /* GOLD LINE */
  .gold-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 50%, #050505 100%);
    overflow: hidden;
    padding: 60px 20px;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,151,58,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(20,20,20,0.4) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 2px;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
  }

  .hero h1 span {
    color: var(--gold-light);
    font-style: italic;
  }

  .hero-sub {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 600;
  }

  .hero-bullets {
    list-style: none;
    margin-bottom: 36px;
  }

  .hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
  }

  .hero-bullets li::before { display: none; }

  .hero-cta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #1aab52);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    white-space: nowrap;
  }

  .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,211,102,0.7);
  }

  .hero-info-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    align-items: center;
    width: 100%;
  }

  .pill {
    background: rgba(201,151,58,0.12);
    border: 1px solid rgba(201,151,58,0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
  }

  .hero-image-wrap::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(201,151,58,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-photo {
    width: 100%;
    max-width: 220px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  }

  /* SECTIONS */
  section { padding: 48px 20px; }

  .container { max-width: 1000px; margin: 0 auto; }

  .section-label {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.2;
  }

  .section-title span { color: var(--gold-light); font-style: italic; }

  /* DOR */
  .dor-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  }

  .dor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
  }

  .dor-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,151,58,0.2);
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    transition: background 0.2s, border-color 0.2s;
  }

  .dor-card:hover {
    background: rgba(201,151,58,0.06);
    border-left-color: var(--gold-bright);
  }

  .dor-card::before {
    display: none;
  }

  .highlight-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--teal-dark);
    padding: 32px 40px;
    border-radius: 6px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 12px 40px rgba(201,151,58,0.3);
  }

  /* CUSTOS */
  .custos-section {
    background: #050505;
  }

  .custos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .custo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.2s;
  }

  .custo-item:nth-child(even) { color: var(--gold-light); }

  .custo-item:hover {
    background: rgba(201,151,58,0.08);
    border-color: rgba(201,151,58,0.3);
    transform: translateX(4px);
  }

  .custo-arrow {
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    display:flex;
    align-items:center;
  }

  /* O QUE VAI APRENDER */
  .aprender-section {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  }

  .aprender-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .aprender-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    transition: all 0.2s;
  }

  .aprender-item:hover {
    background: rgba(201,151,58,0.06);
    border-color: rgba(201,151,58,0.25);
    transform: translateX(6px);
  }

  .aprender-num {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--teal-dark);
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
  }

  .aprender-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 500;
  }

  /* BENEFÍCIOS */
  .beneficios-section { background: #0a0a0a; }

  .beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .beneficio-card {
    background: rgba(201,151,58,0.06);
    border: 1px solid rgba(201,151,58,0.2);
    border-top: 3px solid var(--gold);
    padding: 28px 24px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.2s;
  }

  .beneficio-card:hover { transform: translateY(-4px); }

  .beneficio-icon { font-size: 32px; margin-bottom: 16px; }

  .beneficio-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* METODOLOGIA */
  .metodologia-section { background: #050505; }

  .metodo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .metodo-card {
    padding: 24px;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
  }

  .metodo-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
  }

  .metodo-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
  }

  /* CLIENTES */
  .clientes-section { background: #0a0a0a; }

  .logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  @media (min-width: 769px) {
    .logos-grid {
      grid-template-columns: repeat(6, 1fr);
    }
  }

  .logo-box {
    background: white;
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-align: center;
    transition: transform 0.2s;
    overflow: hidden;
  }

  .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px;
  }

  .logo-box:hover { transform: scale(1.04); }

  /* DEPOIMENTOS */
  .depo-section { background: #050505; }

  .depo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
  }

  .depo-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
  }

  .depo-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 10px; left: 20px;
    line-height: 1;
  }

  .depo-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
  }

  .depo-text strong { color: var(--gold-light); }

  .depo-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
  }

  .depo-role {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
  }

  /* QUEM É LORENA */
  .lorena-section { background: #0a0a0a; }

  .lorena-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
  }

  .lorena-img-wrap {
    position: relative;
  }

  .lorena-img-wrap::before {
    display: none;
  }

  .lorena-img {
    width: 100%;
    border-radius: 6px;
    display: block;
  }

  .lorena-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
  }

  .stat-box {
    background: rgba(201,151,58,0.08);
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: 6px;
    padding: 16px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-light);
    font-weight: 700;
    display: block;
  }

  .stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
  }

  .lorena-creds {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .lorena-creds li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
  }

  .lorena-creds li::before { display: none; }

  /* INFORMAÇÕES */
  .info-section {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  }

  .info-card {
    background: #0f0f0f;
    color: var(--white);
    border-radius: 12px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    border: 1px solid rgba(201,151,58,0.3);
  }

  .info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 32px;
    text-align: center;
  }

  .info-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201,151,58,0.15);
  }

  .info-row:last-child { border-bottom: none; margin-bottom: 0; }

  .info-icon {
    font-size: 26px;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
  }

  .info-content {}

  .info-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }

  .info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
  }

  .vagas-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--teal-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 8px;
  }

  /* PREÇO */
  .preco-section { background: #050505; }

  .preco-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(201,151,58,0.4);
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .preco-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  }

  .preco-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
  }

  .preco-avista {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold-bright);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
  }

  .preco-ou {
    font-size: 13px;
    color: var(--text-light);
    margin: 16px 0;
    opacity: 0.7;
  }

  .preco-parcela {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 32px;
  }

  .preco-parcela span { color: var(--gold-light); }

  .btn-whatsapp {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #1aab52);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    margin-bottom: 16px;
    white-space: nowrap;
  }

  .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,211,102,0.7);
  }

  .btn-whatsapp svg {
    width: 24px; height: 24px;
    fill: white;
  }

  .preco-urgencia {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 20px;
  }

  /* CTA FINAL */
  .cta-final {
    background: linear-gradient(135deg, #141414, #050505);
    padding: 48px 20px;
    text-align: center;
  }

  .cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .cta-final p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  /* FOOTER */
  footer {
    background: #000000;
    padding: 32px 20px;
    text-align: center;
  }

  footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 6px;
  }

  footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
  }

  /* FLOATING WA BUTTON */
  .float-wa {
    position: fixed;
    bottom: 28px; right: 28px;
    background: #25d366;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    text-decoration: none;
    z-index: 999;
    transition: transform 0.2s;
    animation: pulse 2.5s infinite;
  }

  .float-wa:hover { transform: scale(1.1); }

  .float-wa svg { width: 30px; height: 30px; fill: white; }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content > * {
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
  }

  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.25s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.35s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.45s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.55s; }
  .hero-content > *:nth-child(6) { animation-delay: 0.65s; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrap { order: -1; }
    .hero-photo { max-width: 280px; }
    .lorena-inner { grid-template-columns: 1fr; }
    .lorena-img { max-width: 300px; margin: 0 auto; }
    .info-card { padding: 32px 24px; }
    .preco-card { padding: 28px 16px; }
    section { padding: 60px 20px; }
  }

  @media (max-width: 480px) {
    .logos-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-info-pills { flex-direction: column; }
    .lorena-stats { grid-template-columns: 1fr 1fr; }
  }