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

    html {
      scroll-behavior: smooth;
    }

    :root {
      --page-gutter: max(40px, calc((100vw - 1290px) / 2));
    }

    body {
      font-family: 'Montserrat', sans-serif;
      min-height: 100vh;
    }

    .dobra1 {
      background: #fff url('desk.webp') center bottom / cover no-repeat;
      width: 100%;
      position: relative;
    }

    /* NAVBAR */
    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 100;
      width: 100%;
      height: clamp(56px, 4.9vw, 94px);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 6px var(--page-gutter);
    }

    .navbar-logo {
      height: clamp(34px, 2.9vw, 55.75px);
      width: auto;
      border-radius: 32px;
      display: block;
      flex-shrink: 0;
    }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 16px 0 16px 24px;
      margin-left: auto;
      flex-shrink: 0;
    }

    .navbar-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.15px;
      color: #fff;
      text-decoration: none;
      text-align: center;
      line-height: 1.3;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .navbar-links a:hover {
      opacity: 0.7;
    }

    @media (min-width: 1041px) {
      .navbar {
        position: fixed;
        transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
      }

      .navbar.scrolled {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      }

      .navbar.scrolled .navbar-links a {
        color: #101828;
      }
    }

    /* HERO */
    .hero {
      width: 100%;
      display: flex;
      align-items: center;
      padding: clamp(56px, 4.9vw, 94px) var(--page-gutter) 0;
      min-height: 600px;
    }

    .hero-content {
      width: 100%;
      max-width: 505px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(40px, 8vh, 80px) 0;
      gap: 0;
    }

    .hero-title {
      font-weight: 700;
      font-size: 34px;
      letter-spacing: 0.4px;
      color: #160800;
      line-height: 1.3;
      margin-bottom: clamp(12px, 1.3vw, 24px);
    }

    .hero-desc {
      font-weight: 500;
      font-size: 17px;
      letter-spacing: 0.2px;
      color: #160800;
      line-height: 1.3;
      margin-bottom: clamp(12px, 1.3vw, 24px);
    }

    .hero-date {
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.19px;
      color: #eb7300;
      line-height: 1.3;
      margin-bottom: clamp(14px, 1.25vw, 24px);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(235, 115, 0, 0.1);
      border: 1.5px solid rgba(235, 115, 0, 0.35);
      border-radius: 8px;
      padding: 6px 14px;
      align-self: flex-start;
    }

    .hero-subtitle {
      font-weight: 700;
      font-size: 22px;
      letter-spacing: 0.28px;
      color: #160800;
      line-height: 1.3;
      margin-bottom: clamp(14px, 1.25vw, 24px);
    }

    .hero-btns {
      display: flex;
      align-items: center;
      gap: clamp(10px, 0.99vw, 19px);
      flex-wrap: wrap;
    }

    .hero-btns .btn-primary {
      width: auto;
      height: 56px;
      padding: 12px 24px;
    }

    .hero-btns .btn-secondary {
      width: 50%;
      height: 56px;
      padding: 12px 20px;
      background-color: #ff2f2f;
      border-color: #ff2f2f;
    }

    .hero-btns .btn-secondary span {
      color: #ffffff;
      font-weight: 800;
    }

    .hero-btns .btn-secondary .bell-icon {
      filter: brightness(0) invert(1);
    }

    /* ─── Badge "AO VIVO AGORA" (contagem regressiva zerada) ─── */
    .hero-date.is-live {
      background: rgba(255, 47, 47, 0.1);
      border-color: rgba(255, 47, 47, 0.35);
      color: #ff2f2f;
    }

    .live-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ff2f2f;
      animation: live-pulse 1.5s ease-in-out infinite;
    }

    @keyframes live-pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .btn-primary {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px 8px 6px 10px;
      width: clamp(200px, 18.44vw, 354px);
      height: clamp(48px, 3.54vw, 68px);
      background: linear-gradient(90deg, #ff922a 0%, #eb7300 100%);
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
      flex-shrink: 0;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(235, 115, 0, 0.4);
      filter: brightness(1.05);
    }

    .btn-primary span {
      font-weight: 800;
      font-size: 16px;
      letter-spacing: 0.18px;
      color: #fff;
      line-height: 1.3;
      white-space: nowrap;
    }

    .btn-secondary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(6px, 0.52vw, 10px);
      padding: 6px 7px 6px 10px;
      width: clamp(130px, 10.52vw, 202px);
      height: clamp(48px, 3.54vw, 68px);
      background: transparent;
      border-radius: 8px;
      border: 2px solid #ff2f2f;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      flex-shrink: 0;
    }

    .btn-watch {
      display: flex;
      align-items: center;
      justify-content: center;
      width: clamp(130px, 10.52vw, 202px);
      height: clamp(48px, 3.54vw, 68px);
      background: #ff2f2f;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      flex-shrink: 0;
    }

    .btn-watch span {
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.18px;
      color: #fff;
      line-height: 1.3;
      white-space: nowrap;
    }

    .btn-secondary span {
      font-weight: 500;
      font-size: 16px;
      letter-spacing: 0.18px;
      color: #ce0000;
      line-height: 1.3;
      white-space: nowrap;
      transition: color 0.3s ease;
    }

    .btn-secondary .bell-icon {
      width: clamp(14px, 0.99vw, 19px);
      height: clamp(16px, 1.15vw, 22px);
      display: block;
      flex-shrink: 0;
      transition: filter 0.3s ease;
    }

    .menu-mobile {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: #101828;
      padding: 4px;
    }

    .menu-mobile svg {
      width: 28px;
      height: 28px;
      stroke: #101828;
    }

    /* â”€â”€â”€ MOBILE NAV DROPDOWN â”€â”€â”€ */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 99;
      background: #fff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-nav.open {
      max-height: 400px;
    }

    .mobile-nav-inner {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding-bottom: 16px;
    }

    .mobile-nav a {
      display: block;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.15px;
      color: #101828;
      text-decoration: none;
      padding: 14px 24px;
      border-bottom: 1px solid #f0f0f0;
      transition: background 0.15s, color 0.15s;
    }

    .mobile-nav a:last-child {
      border-bottom: none;
    }

    .mobile-nav a:hover {
      background: #fff8f2;
      color: #eb7300;
    }

    /* Ãcone hamburguer â†’ X */
    .menu-mobile .icon-close {
      display: none;
    }

    .menu-mobile.active .icon-open {
      display: none;
    }

    .menu-mobile.active .icon-close {
      display: block;
    }


    @media (max-width: 1023px) {
      :root {
        --page-gutter: 20px;
      }

      .dobra1 {
        background: #fff url('mob.webp') center top / 100% auto no-repeat;
        margin-top: 50px;
      }

      .navbar {
        position: fixed;
        background: #fff;
        height: clamp(60px, 12vw, 80px);
      }

      .navbar-logo {
        height: 32px;
      }

      .navbar-links {
        display: none;
      }

      .menu-mobile {
        display: block;
      }

      .mobile-nav {
        display: block;
        padding-top: clamp(60px, 12vw, 80px);
      }

      .hero {
        align-items: flex-end;
        justify-content: center;
        padding: 100px var(--page-gutter) 40px;
      }

      .hero-content {
        align-items: center;
        text-align: center;
        max-width: none;
        width: 100%;
        margin-top: 60%;
        padding: 0;
      }

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

      .hero-desc {
        font-size: 15px;
      }

      .hero-date {
        font-size: 13px;
      }

      .hero-subtitle {
        font-size: 17px;
      }

      .hero-date {
        align-self: center;
      }

      .hero-btns {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 12px;
      }

      .hero-btns .btn-primary,
      .hero-btns .btn-secondary,
      .hero-btns .btn-watch {
        flex: 1;
        width: 100%;
        min-width: 0;
        height: 48px;
        padding: 4px 8px;
      }

      .hero-btns .btn-primary span,
      .hero-btns .btn-secondary span,
      .hero-btns .btn-watch span {
        font-size: 14px;
        white-space: normal;
        text-align: center;
      }

      /* BotÃ£o WhatsApp no mobile */
      .wpp-content .btn-primary {
        width: 100%;
        max-width: 280px;
        height: 52px;
      }

      h1 {
        font-size: 26px !important;
      }

      h2 {
        font-size: 22px !important;
      }

      h3 {
        font-size: 19px !important;
      }

      h4 {
        font-size: 16px !important;
      }

    }

    @media (max-width: 1023px) and (min-width: 768px) {
      .navbar-logo {
        height: 34px;
      }

      .dobra1 {
        margin-top: 50px;
      }

      .hero {
        min-height: unset;
      }

      .hero-content {
        max-width: none;
        width: 100%;
        margin-top: 70%;
        padding: 0;
      }

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

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

      .hero-date {
        font-size: 17px;
      }

      .hero-subtitle {
        font-size: 28px;
      }

      .btn-primary,
      .btn-secondary {
        height: 56px;
        padding: 6px 12px;
      }

      .btn-primary span,
      .btn-secondary span {
        font-size: 14px;
      }
    }

    @media (max-width: 1023px) and (min-width: 768px) {
      h1 {
        font-size: 38px !important;
      }

      h2 {
        font-size: 33px !important;
      }

      h3 {
        font-size: 30px !important;
      }
    }

    /* â”€â”€â”€ DOBRA 2 (DEPOIMENTOS) â”€â”€â”€ */
    .depoimentos-section {
      background: #ffffff;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      padding: clamp(40px, 4.17vw, 80px) 0;
      overflow: hidden;
    }

    .depoimentos-header {
      text-align: center;
      padding: 0 var(--page-gutter);
    }

    .depoimentos-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #101828;
      margin-bottom: 0.5rem;
    }

    .depoimentos-header p {
      font-size: 16px;
      color: #475467;
      max-width: 600px;
      margin: 0 auto;
    }

    .depoimentos-layout {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 4rem;
      padding: 0 var(--page-gutter);
    }

    .lesson-card {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      width: 100%;
    }

    .lesson-divider {
      height: 1px;
      width: 100%;
      background: linear-gradient(90deg, transparent 0%, rgba(235, 115, 0, 0.3) 50%, transparent 100%);
    }

    .depoimentos-text-column {
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .eyebrow-icon {
      width: 20px;
      height: 20px;
      border: 1px solid rgba(235, 115, 0, 0.5);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #eb7300;
      font-size: 10px;
    }

    .eyebrow-text {
      color: #eb7300;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
    }

    .depoimentos-text-column h2 {
      font-size: 30px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: #101828;
    }

    .lesson-desc {
      font-size: 16px;
      line-height: 1.5;
      color: #475467;
      margin-bottom: 1.5rem;
    }

    .depoimentos-btn {
      margin-bottom: 1rem;
      background-color: #ff2f2f;
      border-color: #ff2f2f;
      align-self: flex-start;
    }

    .depoimentos-btn span {
      color: #ffffff;
    }

    .depoimentos-btn .bell-icon {
      filter: brightness(0) invert(1);
    }

    .lesson-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-self: flex-start;
      margin-bottom: 1.5rem;
    }

    .lesson-btns .btn-primary {
      width: auto;
      height: 48px;
      padding: 6px 20px;
    }

    .btn-blue {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 6px 16px;
      height: 48px;
      background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    }

    .btn-blue:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
      filter: brightness(1.08);
    }

    .btn-blue span {
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.18px;
      color: #fff;
      white-space: nowrap;
    }

    .btn-blue svg {
      flex-shrink: 0;
    }

    .carousel-column {
      width: 100%;
      position: relative;
    }

    .image-card {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #d0d5dd;
      position: relative;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      background-color: #101828;
      cursor: pointer;
      box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .image-card::after {
      content: "";
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: #eb7300;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 22px 22px;
      position: absolute;
      opacity: 1;
      transition: 0.2s;
    }

    .image-card:hover {
      transform: translateY(-4px);
      border-color: #eb7300;
      box-shadow: 0 4px 10px rgba(16, 24, 40, 0.1);
    }

    .image-card:hover::after {
      opacity: 1;
      transform: scale(1.1);
    }

    .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.5s ease;
      opacity: 0.7;
    }

    .image-card:hover img {
      transform: scale(1.03);
    }

    /* â”€â”€â”€ MODAL: CONTEÃšDO BLOQUEADO â”€â”€â”€ */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(16, 24, 40, 0.6);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-box {
      background: #fff;
      border-radius: 16px;
      padding: clamp(32px, 5vw, 48px);
      max-width: 440px;
      width: 100%;
      text-align: center;
      position: relative;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      cursor: pointer;
      color: #98a2b3;
      transition: color 0.2s ease;
    }

    .modal-close:hover {
      color: #101828;
    }

    .modal-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .modal-box h3 {
      font-size: 22px;
      font-weight: 700;
      color: #101828;
      margin-bottom: 12px;
    }

    .modal-box p {
      font-size: 16px;
      color: #475467;
      line-height: 1.5;
      margin-bottom: 24px;
    }

    .modal-box .btn-primary {
      width: 100%;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .depoimentos-section {
        gap: 4rem;
      }

      .lesson-card {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
      }

      .lesson-card.reverse {
        flex-direction: row-reverse;
      }

      .depoimentos-text-column {
        flex: 1;
      }

      .carousel-column {
        flex: 1;
      }
    }

    @media (max-width: 767px) {
      .depoimentos-text-column {
        text-align: center;
      }

      .eyebrow {
        justify-content: center;
      }

      .depoimentos-btn {
        align-self: center;
        width: 100%;
      }

      .lesson-btns {
        align-self: center;
        width: 100%;
        flex-direction: column;
      }

      .lesson-btns .btn-primary,
      .lesson-btns .btn-blue {
        width: 100%;
        justify-content: center;
      }

      .hero-btns {
        flex-direction: column;
      }

      .hero-btns .btn-primary,
      .hero-btns .btn-secondary,
      .hero-btns .btn-watch {
        flex: unset;
        width: 100%;
        height: 52px;
        padding: 6px 12px;
      }
    }

    /* â”€â”€â”€ EPISÃ“DIOS DO SEMINÃRIO â”€â”€â”€ */
    .episodios-section {
      background: #ffffff;
      width: 100%;
      padding: clamp(48px, 5vw, 96px) 0;
      overflow: hidden;
    }

    .episodios-header {
      text-align: center;
      margin-bottom: clamp(32px, 4vw, 56px);
      padding: 0 var(--page-gutter);
    }

    .episodios-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #101828;
      margin-bottom: 0.5rem;
    }

    .episodios-header p {
      font-size: 16px;
      color: #475467;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* â”€â”€ Carrossel â”€â”€ */
    .episodios-carousel-wrapper {
      position: relative;
    }

    .episodios-track-outer {
      overflow: hidden;
      padding: 8px 0 32px;
    }

    .episodios-track {
      display: flex;
      gap: 24px;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .episodio-card {
      flex: 0 0 calc((100vw - 2 * var(--page-gutter) - 48px) / 3);
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
      background: #ffffff;
      border: 1px solid #e4e7ec;
      border-radius: 16px;
      padding: 16px;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      margin-left: var(--carousel-offset, 0px);
    }

    .episodio-card:first-child {
      margin-left: var(--page-gutter);
    }

    .episodio-card:last-child {
      margin-right: var(--page-gutter);
    }

    .episodio-card:hover {
      border-color: rgba(235, 115, 0, 0.45);
      box-shadow: 0 8px 28px rgba(235, 115, 0, 0.1);
    }

    .episodio-embed {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 10px;
      overflow: hidden;
      background: #f2f4f7;
      flex-shrink: 0;
    }

    .episodio-embed iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    .episodio-desc {
      font-size: 15px;
      font-weight: 500;
      color: #475467;
      line-height: 1.5;
      flex: 1;
    }

    .episodio-card .btn-primary {
      width: 100%;
      height: 44px;
      padding: 6px 12px;
      border-radius: 8px;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .episodio-card .btn-primary span {
      font-size: 14px;
    }

    /* Dots */
    .episodios-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 8px;
    }

    .episodios-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #d0d5dd;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s ease, width 0.3s ease;
    }

    .episodios-dot.active {
      background: #eb7300;
      width: 24px;
      border-radius: 4px;
    }

    /* Setas */
    @keyframes ep-nudge-right {
      0%, 100% { transform: translateX(0); }
      50%       { transform: translateX(4px); }
    }
    @keyframes ep-nudge-left {
      0%, 100% { transform: translateX(0); }
      50%       { transform: translateX(-4px); }
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(calc(-50% - 20px));
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      width: 52px;
      height: 64px;
      border-radius: 12px;
      border: none;
      background: linear-gradient(160deg, #ff922a 0%, #eb7300 100%);
      box-shadow: 0 4px 16px rgba(235, 115, 0, 0.35);
      cursor: pointer;
      color: #fff;
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }

    .carousel-arrow:not(:disabled):hover {
      filter: brightness(1.08);
      box-shadow: 0 8px 24px rgba(235, 115, 0, 0.45);
      transform: translateY(calc(-50% - 22px));
    }

    .carousel-arrow:disabled {
      opacity: 0;
      pointer-events: none;
    }

    .carousel-arrow .arrow-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      line-height: 1;
    }

    .carousel-arrow.prev .arrow-icon { animation: ep-nudge-left 1.6s ease-in-out infinite; }
    .carousel-arrow.next .arrow-icon { animation: ep-nudge-right 1.6s ease-in-out infinite; }

    .carousel-arrow.prev { left: max(8px, calc(var(--page-gutter) - 64px)); }
    .carousel-arrow.next { right: max(8px, calc(var(--page-gutter) - 64px)); }

    @media (max-width: 767px) {
      .episodio-card {
        flex: 0 0 calc(100vw - 2 * var(--page-gutter));
      }

      .carousel-arrow {
        width: 40px;
        height: 52px;
        border-radius: 10px;
      }

      .carousel-arrow.prev { left: 4px; }
      .carousel-arrow.next { right: 4px; }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .episodio-card {
        flex: 0 0 calc((100vw - 2 * var(--page-gutter) - 24px) / 2);
      }

      .carousel-arrow.prev { left: 4px; }
      .carousel-arrow.next { right: 4px; }
    }

    /* â”€â”€â”€ WHATSAPP GROUP â”€â”€â”€ */
    .wpp-section {
      background-color: #ffffff;
      width: 100%;
      padding: clamp(48px, 5vw, 96px) var(--page-gutter);
      color: #101828;
    }

    .wpp-grid {
      display: flex;
      align-items: center;
      gap: clamp(32px, 5vw, 80px);
      max-width: 1100px;
      margin: 0 auto;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 24px;
      padding: clamp(32px, 5vw, 64px);
    }

    @media (max-width: 900px) {
      .wpp-grid {
        flex-direction: column-reverse;
        text-align: center;
      }

      .wpp-image {
        align-self: center;
      }
    }

    .wpp-image {
      flex: 1;
      width: 100%;
      max-width: 350px;
      margin: 0 auto;
      align-self: flex-end;
      margin-bottom: calc(-1 * clamp(32px, 5vw, 64px));
    }

    .wpp-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .wpp-content {
      flex: 1.2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: clamp(12px, 1.5vw, 20px);
    }

    @media (max-width: 900px) {
      .wpp-content {
        align-items: center;
        text-align: center;
      }
    }

    .wpp-eyebrow {
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 2px;
      color: #64748b;
      text-transform: uppercase;
      margin-bottom: -4px;
    }

    .wpp-content h2 {
      font-size: 32px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.3;
    }

    .highlight-italic {
      color: #eb7300;
      font-weight: 500;
      font-style: italic;
    }

    .wpp-content p {
      font-size: 18px;
      line-height: 1.6;
      color: #94a3b8;
      max-width: 600px;
    }

    .highlight-bold {
      color: #334155;
      font-weight: 600;
    }

    /* â”€â”€â”€ SPEAKER â”€â”€â”€ */
    .speaker-section {
      background: #fff8f2;
      width: 100%;
      padding: clamp(48px, 5vw, 96px) var(--page-gutter);
    }

    .speaker-grid {
      display: flex;
      align-items: center;
      gap: clamp(32px, 5vw, 80px);
      max-width: 1100px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .speaker-grid {
        flex-direction: column;
        text-align: center;
      }
    }

    .speaker-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: clamp(12px, 1.25vw, 20px);
    }

    .speaker-eyebrow {
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: rgba(16, 24, 40, 0.65);
    }

    .speaker-grad {
      background: linear-gradient(90deg, #eb7300 0%, #ff922a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .speaker-name {
      font-weight: 700;
      font-size: 38px;
      letter-spacing: 0.4px;
      color: #101828;
      line-height: 1.2;
    }

    .speaker-bio {
      display: flex;
      flex-direction: column;
      gap: clamp(10px, 0.83vw, 14px);
    }

    .speaker-bio p {
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.18px;
      color: #344054;
      line-height: 1.6;
    }

    .speaker-social {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: clamp(6px, 0.62vw, 10px);
    }

    @media (max-width: 900px) {
      .speaker-social {
        justify-content: center;
      }
    }

    .speaker-social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 10px;
      border: 1px solid #d0d5dd;
      background: #fff;
      color: #1d2939;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }

    .speaker-social-link::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #ff922a 0%, #eb7300 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 0;
    }

    .speaker-social-link img {
      position: relative;
      z-index: 1;
      transition: filter 0.3s ease, transform 0.3s ease;
    }

    .speaker-social-link:hover {
      border-color: #eb7300;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(235, 115, 0, 0.35);
    }

    .speaker-social-link:hover::before {
      opacity: 1;
    }

    .speaker-social-link:hover img {
      filter: brightness(0) invert(1);
      transform: scale(1.1);
    }

    .speaker-social-link svg {
      width: 26px;
      height: 26px;
      display: block;
    }

    .speaker-photo {
      flex: 1;
      min-width: 0;
      display: flex;
      justify-content: center;
    }

    .speaker-photo img {
      width: 90%;
      height: auto;
      display: block;
      border-radius: 12px;
      object-fit: cover;
    }

    /* â”€â”€â”€ FOOTER â”€â”€â”€ */
    .site-footer {
      background-color: #ffffff;
      border-top: 1px solid #fce3d0;
      text-align: center;
      padding: clamp(24px, 3.5vw, 40px) var(--page-gutter);
    }

    .site-footer p {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: #475467;
      margin: 0;
    }