/* =========================
   FONTS (ajuste os paths)
========================= */
@font-face {
    font-family: "IvyPrestoDisplay";
    src: url("../fonts/IvyPrestoDisplay-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "JustSans";
    src: url("../fonts/JustSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "JustSans";
    src: url("../fonts/JustSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* =========================
   THEME
========================= */
:root {
    --bg: #615b52;
    /* fundo (hero) */
    --text: #fbf5ec;
    /* branco quente */
    --line: rgba(251, 245, 236, 0.55);

    --light: #f1ede6;
    /* fundo claro das seções */
    --dark: #5a534b;
    /* faixa escura */
    --ink: #2b2a28;
    /* texto no fundo claro */

    --olive: #5e6941;
    /* verde dos ícones/pilares */
    --gold: #d49b42;
    /* detalhes */
    --soft-line: rgba(43, 42, 40, 0.25);

    --btn-bg: #e9e6e1;
    /* botão claro */
    --btn-text: #3f3b35;
    --shadow: rgba(0, 0, 0, 0.22);

    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "JustSans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
}

@media (max-width: 900px) {
    .container {
        width: min(var(--container), calc(100% - 32px));
    }
}

/* =========================
   HEADER
========================= */
.site-header {
    padding-top: 24px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 22px;
    letter-spacing: 0.2px;
}

.nav-link {
    opacity: 0.95;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: var(--text);
    opacity: 0.9;
}

.header-rule {
    margin-top: 16px;
    height: 1px;
    background: var(--line);
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 999px;
    background: var(--btn-bg);
    color: var(--btn-text);
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 10px 22px var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px var(--shadow);
}

.btn:active {
    transform: translateY(0px);
    opacity: 0.95;
}

.btn--header {
    padding: 16px 34px;
}

.btn--dark {
    background: var(--dark);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.20);
}

/* =========================
   HERO (IGUAL AO PRINT)
========================= */

.hero{
  padding: 140px 0 70px;
}

/* grid exatamente como no print (texto + card da foto) */
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  min-height: 520px;
}

.hero-content{
  max-width: 720px;
}

.hero-title{
  font-family: "IvyPrestoDisplay", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 74px;
  line-height: 1.06;
  margin: 0 0 22px;
  letter-spacing: 0.2px;
}

.hero-text{
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 34px;
  max-width: 640px;
  opacity: 0.95;
}

/* =========================
   FOTO DIREITA (com o “retângulo” do print)
========================= */
.hero-photo{
  justify-self: end;               /* encosta na direita */
  width: 540px;                    /* tamanho do card do print */
  height: 520px;

  position: relative;
  display: flex;
  align-items: flex-end;           /* imagem encosta embaixo */
  justify-content: center;

  padding: 44px 44px 0;            /* respiro lateral/topo (como no print) */
  box-sizing: border-box;
}

/* o retângulo mais escuro atrás (igual ao print) */
.hero-photo::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  border-radius: 18px;
  z-index: 0;
}

/* a imagem fica por cima do retângulo */
.hero-img{
  position: relative;
  z-index: 1;

  height: 150%;
  width: auto;
  object-fit: contain;
  display: block;

  transform: translateY(71px);     /* “pé” tocando o fundo do card */
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px){
  .hero-title{ font-size: 58px; }
  .hero-text{ font-size: 20px; }

  .hero-photo{
    width: 480px;
    height: 480px;
    padding: 34px 34px 0;
  }
  .hero-img{ transform: translateY(10px); }
}

@media (max-width: 860px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-photo{
    justify-self: center;
    width: min(540px, 100%);
    height: 520px;
    padding: 34px 28px 0;
  }

  .hero-content{ margin: 0 auto; }
}

@media (max-width: 760px){
  .hero{ padding: 70px 0 50px; }
  .hero-title{ font-size: 44px; }
  .hero-text{ font-size: 18px; }

  .hero-photo{
    width: min(420px, 100%);
    height: 460px;
    padding: 28px 22px 0;
  }
}





/* =========================
   SECTION: METHOD FIT
========================= */
.method-fit {
    background: var(--light);
    color: var(--ink);
    padding: 70px 0;
}

.method-fit-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: center;
}

.method-fit-badge {
    width: 320px;
    height: 320px;
    display: grid;
    place-items: center;
}

.badge-svg {
    width: 100%;
    height: 100%;
}

.method-fit-title {
    margin: 0 0 18px;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.checklist {
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-size: 24px;
    line-height: 1.42;
}

.checklist li {
    position: relative;
    padding-left: 34px;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--dark);
    font-weight: 500;
}

/* =========================
   BAND QUOTE
========================= */
.quote-band {
    background: var(--dark);
    color: var(--text);
    padding: 48px 0;
}

.quote-band-text {
    margin: 0;
    text-align: center;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: 0.2px;
}

/* =========================
   SECTION: PILLARS
========================= */
.pillars {
    background: var(--light);
    color: var(--ink);
    padding: 70px 0 90px;
}

.pillars-title {
    font-family: "IvyPrestoDisplay", Georgia, "Times New Roman", serif;
    font-weight: 400;
    text-align: center;
    margin: 0 0 42px;
    font-size: 46px;
    line-height: 1.08;
    position: relative;
}

.pillars-title::after {
    content: "";
    display: block;
    width: min(900px, 90%);
    height: 2px;
    background: rgba(43, 42, 40, 0.25);
    margin: 14px auto 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 22px;
    align-items: start;
    margin-top: 40px;
}

.pillar {
    text-align: center;
    padding: 10px 10px;
}

.pillar-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
}

.pillar-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    opacity: 0.95;
}

.pillar-divider {
    width: 1px;
    height: 180px;
    background: var(--soft-line);
    margin-top: 22px;
}

.pillars-cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
    .nav {
        font-size: 18px;
        gap: 16px;
    }

    .btn {
        font-size: 18px;
        padding: 14px 26px;
    }

    .hero {
        padding: 110px 0 60px;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-text {
        font-size: 20px;
    }

    .method-fit-grid {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .method-fit-badge {
        width: 280px;
        height: 280px;
    }

    .method-fit-title {
        font-size: 34px;
    }

    .checklist {
        font-size: 20px;
    }

    .quote-band-text {
        font-size: 28px;
    }

    .pillars-title {
        font-size: 40px;
    }
}

@media (max-width: 860px) {
    .method-fit-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: left;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .pillar-divider {
        display: none;
    }
}

@media (max-width: 760px) {
    .header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn--header {
        align-self: flex-end;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-text {
        font-size: 18px;
    }

    .footer-rule {
        margin-top: 60px;
    }

    .quote-band {
        padding: 38px 0;
    }

    .quote-band-text {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .nav {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn--header {
        width: auto;
    }
}

/* =========================
   BANDA: 21 DIAS
========================= */
.days-band {
    background: var(--dark);
    color: var(--text);
    padding: 54px 0;
}

.days-band-inner {
    text-align: center;
}

.days-band-title {
    margin: 0 0 22px;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.days-band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    justify-items: center;
    align-items: start;
    margin-top: 18px;
}

.bolt-list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    font-size: 26px;
    line-height: 1.35;
}

.bolt-list li {
    position: relative;
    padding-left: 34px;
    margin: 6px 0;
    opacity: 0.95;
}

.bolt-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(1px);
}

/* =========================
   SEÇÃO: VÍDEO
========================= */
.video-section {
    background: var(--light);
    color: var(--ink);
    padding: 70px 0 90px;
}

.video-title {
    font-family: "IvyPrestoDisplay", Georgia, "Times New Roman", serif;
    font-weight: 400;
    text-align: center;
    margin: 0;
    font-size: 52px;
    line-height: 1.1;
}

.video-rule {
    width: min(980px, 92%);
    height: 2px;
    background: rgba(43, 42, 40, 0.25);
    margin: 14px auto 34px;
}

.video-wrap {
    display: flex;
    justify-content: center;
}

.video-placeholder {
    width: min(980px, 100%);
    height: 480px;
    background: #d8d8d8;
    border-radius: 2px;
}

/* =========================
   RESPONSIVO: 21 DIAS + VÍDEO
========================= */
@media (max-width: 1024px) {
    .days-band-title {
        font-size: 32px;
    }

    .bolt-list {
        font-size: 20px;
    }

    .video-title {
        font-size: 44px;
    }

    .video-placeholder {
        height: 420px;
    }
}

@media (max-width: 760px) {
    .days-band {
        padding: 44px 0;
    }

    .days-band-title {
        font-size: 24px;
    }

    .days-band-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: start;
        text-align: left;
    }

    .bolt-list {
        font-size: 18px;
    }

    .bolt-list li {
        padding-left: 30px;
    }

    .video-section {
        padding: 54px 0 70px;
    }

    .video-title {
        font-size: 30px;
    }

    .video-placeholder {
        height: 260px;
    }
}


/* =========================
   DEPOIMENTOS (CARROSSEL)
========================= */
.testimonials {
    background: #7a746b;
    /* tom do print (faixa marrom mais clara) */
    color: var(--text);
    padding: 70px 0 80px;
}

.testimonials-title {
    text-align: center;
    margin: 0;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.testimonials-rule {
    width: min(980px, 92%);
    height: 2px;
    background: rgba(251, 245, 236, 0.55);
    margin: 14px auto 34px;
}

.testimonials-shell {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    align-items: center;
    gap: 18px;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 34px;
    align-items: center;
    transition: transform 0.35s ease;
    will-change: transform;
    padding: 8px 0;
}

/* Cards */
.t-card {
    flex: 0 0 380px;
    height: 430px;
    background: rgba(241, 237, 230, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.20);
    display: grid;
    place-items: center;
}

.t-media {
    color: rgba(43, 42, 40, 0.55);
    font-size: 16px;
    letter-spacing: 0.4px;
}

/* setas */
.arrow {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 70px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.arrow:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.arrow:active {
    transform: translateY(0px);
    opacity: 0.92;
}

.testimonials-caption {
    text-align: center;
    margin: 26px 0 22px;
    font-size: 26px;
    opacity: 0.95;
}

.testimonials-cta {
    display: flex;
    justify-content: center;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 36px;
    }

    .t-card {
        flex-basis: 320px;
        height: 380px;
    }

    .testimonials-caption {
        font-size: 20px;
    }
}

@media (max-width: 760px) {
    .testimonials {
        padding: 56px 0 64px;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-shell {
        grid-template-columns: 44px 1fr 44px;
        gap: 10px;
    }

    .arrow {
        font-size: 54px;
        width: 40px;
        height: 40px;
    }

    .t-card {
        flex-basis: 86vw;
        height: 320px;
    }

    .testimonials-track {
        gap: 16px;
    }

    .testimonials-caption {
        font-size: 16px;
        margin: 18px 0 18px;
    }
}


/* =========================
   CTA COM FOTO (CORRIGIDO)
========================= */
.photo-cta {
  background: var(--bg); /* terracota */
  color: var(--text);
  padding: 80px 0 60px;
  overflow: hidden; /* evita vazamento */
}

.photo-cta-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 90px;
  align-items: center;
}

/* FOTO */
.photo-cta-photo {
  width: 100%;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--brand-light);
}

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

/* TEXTO */
.photo-cta-content {
  max-width: 520px;
}

.photo-cta-title {
  margin: 0 0 16px;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.05;
}

.photo-cta-text {
  margin: 0 0 28px;
  font-size: 22px;
  line-height: 1.35;
  opacity: 0.95;
}

/* FOOT */
.photo-cta-foot {
  margin: 56px 0 0;
  text-align: center;
  font-size: 18px;
  opacity: 0.85;
}


@media (max-width: 1024px) {
  .photo-cta-grid {
    grid-template-columns: 420px 1fr;
    gap: 48px;
  }

  .photo-cta-photo {
    height: 520px;
  }

  .photo-cta-title {
    font-size: 36px;
  }

  .photo-cta-text {
    font-size: 20px;
  }
}

@media (max-width: 860px) {
  .photo-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .photo-cta-photo {
    height: 420px;
    max-width: 420px;
    margin: 0 auto;
  }

  .photo-cta-content {
    margin: 0 auto;
  }
}

/* =========================
   QUEM É LUH REIS
========================= */
.about-luh {
  background: var(--brand-light);
  color: var(--ink);
  padding: 90px 0 70px;
}

.about-luh-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: center;
}

.about-luh-content {
  max-width: 620px;
}

.about-luh-title {
  margin: 0 0 24px;
  font-size: 42px;
  font-weight: 600;
}

.about-luh-content p {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.4;
  color: var(--text-dark);
}

.about-luh-content strong {
  font-weight: 600;
}

/* FOTO */
.about-luh-photo {
  width: 100%;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
}

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

/* FRASE FINAL */
.about-luh-foot {
  margin: 60px 0 0;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: var(--brand-olive);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
  .about-luh-grid {
    grid-template-columns: 1fr 360px;
    gap: 56px;
  }

  .about-luh-photo {
    height: 480px;
  }

  .about-luh-title {
    font-size: 36px;
  }

  .about-luh-content p {
    font-size: 20px;
  }
}

@media (max-width: 860px) {
  .about-luh {
    padding: 70px 0 60px;
  }

  .about-luh-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-luh-content {
    margin: 0 auto;
  }

  .about-luh-photo {
    max-width: 420px;
    height: 420px;
    margin: 0 auto;
  }

  .about-luh-foot {
    font-size: 20px;
    margin-top: 44px;
  }
}

@media (max-width: 420px) {
  .about-luh-photo {
    height: 340px;
  }

  .about-luh-content p {
    font-size: 18px;
  }
}


/* =========================
   FAQ
========================= */
.faq {
    background: var(--light);
    color: var(--ink);
    padding: 80px 0 70px;
}

.faq-title {
    text-align: center;
    margin: 0 0 34px;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.faq-list {
    width: min(900px, 92%);
    margin: 0 auto;
}

.faq-item {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 18px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;

    font-size: 22px;
    color: var(--ink);

    border-bottom: 2px solid rgba(94, 105, 65, 0.55);
}

.faq-item:first-of-type {
    border-top: 0;
}

.faq-q {
    text-align: left;
}

.faq-plus {
    font-size: 34px;
    line-height: 1;
    color: rgba(94, 105, 65, 0.9);
    margin-left: 20px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item[aria-expanded="true"] .faq-plus {
    transform: rotate(45deg);
    opacity: 0.9;
}

.faq-a {
    padding: 14px 6px 18px;
    border-bottom: 0;
    color: rgba(43, 42, 40, 0.9);
}

.faq-a p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

/* =========================
   CTA FINAL
========================= */
.final-cta {
    background: var(--light);
    color: var(--ink);
    padding: 68px 0 72px;
    border-top: 1px solid rgba(43, 42, 40, 0.15);
    border-bottom: 1px solid rgba(43, 42, 40, 0.15);
}

.final-cta-inner {
    display: grid;
    justify-items: center;
    gap: 24px;
}

.final-cta-title {
    font-family: "IvyPrestoDisplay", Georgia, "Times New Roman", serif;
    font-weight: 400;
    margin: 0;
    font-size: 56px;
}

.btn--final {
    background: var(--dark);
    color: var(--text);
    padding: 18px 56px;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: var(--light);
    color: var(--ink);
    padding: 28px 0 36px;
}

.footer-inner {
    display: flex;
    justify-content: center;
    gap: 26px;
    font-size: 18px;
    opacity: 0.9;
}

:root {
  /* NOVA PALETA (print) */
  --brand-primary: #AE6237; /* terracota */
  --brand-light: #F4F3F1;   /* off white */
  --brand-dark: #0F0D0C;    /* preto quente */
  --brand-olive: #3E4538;   /* verde oliva */

  /* MAPA COMPATÍVEL com seu CSS atual (não quebra nada) */
  --bg: var(--brand-primary);                 /* antes: hero marrom frio */
  --text: #FFFFFF;                            /* textos sobre o terracota */
  --line: rgba(255, 255, 255, 0.45);

  --light: var(--brand-light);                /* fundo claro das seções */
  --dark: var(--brand-primary);               /* faixas escuras = terracota */
  --ink: #1E1D1B;                             /* texto no fundo claro */

  --olive: var(--brand-olive);                /* verde dos ícones */
  --gold: #B1663A;                            /* não estamos usando dourado agora */
  --soft-line: rgba(30, 29, 27, 0.25);

  /* BOTÕES */
  --btn-bg: #FFFFFF;                          /* botão claro padrão */
  --btn-text: #1E1D1B;
  --shadow: rgba(0, 0, 0, 0.18);

  --container: 1200px;
}


/* =========================
   VÍDEO / VSL (MP4 LOCAL) - AJUSTADO
========================= */

.video-section{
  background: var(--light);
  color: var(--ink);
  padding: 70px 0 90px;
}

.video-title{
  font-family: "IvyPrestoDisplay", Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-align: center;
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
}

.video-rule{
  width: min(980px, 92%);
  height: 2px;
  background: rgba(43, 42, 40, 0.25);
  margin: 14px auto 34px;
}

/* Container responsivo 16:9 (sem conflito) */
.video-wrap{
  position: relative;
  width: 100%;
  max-width: min(980px, 95vw);
  aspect-ratio: 16 / 9;        /* moderno e limpo */
  margin: 0 auto;

  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 30px rgba(0,0,0,0.18);
}

/* Fallback caso aspect-ratio não seja suportado (raríssimo) */
@supports not (aspect-ratio: 16 / 9){
  .video-wrap{
    height: 0;
    padding-bottom: 56.25%;     /* 16:9 */
  }
}

/* Vídeo ocupa tudo sem distorcer */
#vsl-player,
.video-player{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;           /* visual premium (sem barras) */
  border-radius: 18px;
}

/* Botão de volume (opcional) */
.volume-toggle{
  position: absolute;
  bottom: 16px;
  right: 16px;

  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;

  background: rgba(0,0,0,0.70);
  color: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;

  opacity: 0;
  transition: opacity 0.25s ease, transform 0.15s ease, background 0.15s ease;
  backdrop-filter: blur(10px);
}

.video-wrap:hover .volume-toggle{
  opacity: 1;
}

.volume-toggle:hover{
  background: rgba(0,0,0,0.85);
  transform: translateY(-1px);
}

.volume-toggle:active{
  transform: translateY(0);
  opacity: 0.95;
}

.volume-toggle.muted svg{
  opacity: 0.6;
}


/* Botão Play/Pause central */
.play-toggle{
  position: absolute;
  inset: 0;
  margin: auto;

  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: none;

  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 36px;
  font-weight: 500;

  display: grid;
  place-items: center;
  cursor: pointer;

  backdrop-filter: blur(8px);
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.play-toggle:hover{
  background: rgba(0,0,0,0.8);
  transform: scale(1.05);
}

.play-toggle:active{
  transform: scale(0.98);
}

/* Quando o vídeo estiver tocando, esconde o botão */
.video-wrap.playing .play-toggle{
  opacity: 0;
  pointer-events: none;
}


@keyframes cta-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 22px var(--shadow);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 18px 34px rgba(0,0,0,0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 22px var(--shadow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--pulse{
    animation: none;
  }
}


/* =========================
   CTA PULSE (premium e sem conflito)
========================= */

/* Classe que você vai colocar no CTA principal */
.btn--pulse{
  position: relative;
  isolation: isolate; /* garante o glow atrás */
}

/* Glow pulsante atrás do botão (não mexe no layout) */
.btn--pulse::after{
  content: "";
  position: absolute;
  inset: -10px;               /* tamanho do glow */
  border-radius: 999px;
  background: rgba(255,255,255,0.18); /* glow suave no terracota */
  filter: blur(12px);
  z-index: -1;

  opacity: 0.0;
  transform: scale(0.92);
  animation: cta-glow 1.8s ease-in-out infinite;
}

/* animação do glow */
@keyframes cta-glow{
  0%   { opacity: 0.00; transform: scale(0.92); }
  50%  { opacity: 0.55; transform: scale(1.02); }
  100% { opacity: 0.00; transform: scale(0.92); }
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .btn--pulse::after{
    animation: none;
    opacity: 0.25;
    transform: none;
  }
}

/* =========================
   CTA PULSE (premium)
========================= */
.btn--pulse{
  position: relative;
  isolation: isolate;
}

/* brilho pulsante atrás do botão */
.btn--pulse::after{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  filter: blur(12px);
  z-index: -1;

  opacity: 0;
  transform: scale(0.92);
  animation: cta-glow 1.8s ease-in-out infinite;
}

@keyframes cta-glow{
  0%   { opacity: 0;    transform: scale(0.92); }
  50%  { opacity: 0.55; transform: scale(1.02); }
  100% { opacity: 0;    transform: scale(0.92); }
}

@media (prefers-reduced-motion: reduce){
  .btn--pulse::after{ animation: none; opacity: 0.25; transform: none; }
}
