    :root {
      --cream: #F5F0E8;
      --bone: #EDE7D9;
      --charcoal: #1C1B19;
      --warm-black: #111110;
      --rose: #C9826B;
      --rose-light: #E0A898;
      --sand: #B5A898;
      --gold: #C4A96D;
      --gold-light: #D4BE8E;
      --white: #FDFAF5;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Syne', sans-serif;
      background: var(--warm-black);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 4rem;
      background: transparent;
      transition: background 0.5s, backdrop-filter 0.5s;
    }
    nav.scrolled {
      background: rgba(17,17,16,0.85);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(196,169,109,0.15);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--cream);
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sand);
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--warm-black);
      background: var(--gold);
      padding: 0.7rem 1.6rem;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
    }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 10rem 4rem 6rem 4rem;
      position: relative;
      z-index: 2;
    }
    .hero-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.8rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 2.5rem;
      height: 1px;
      background: var(--gold);
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--cream);
      margin-bottom: 0.3rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.35s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--rose-light);
    }
    .hero-title-bold {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 5vw, 5.5rem);
      font-weight: 600;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.5s forwards;
    }
    .hero-desc {
      font-size: 0.95rem;
      line-height: 1.85;
      color: var(--sand);
      max-width: 34rem;
      margin-bottom: 3rem;
      font-weight: 400;
      opacity: 0;
      animation: fadeUp 0.8s 0.65s forwards;
    }
    .hero-actions {
      display: flex;
      gap: 1.2rem;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--warm-black);
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(196,169,109,0.25);
    }
    .btn-ghost {
      background: transparent;
      color: var(--cream);
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      border: 1px solid rgba(245,240,232,0.25);
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    .hero-right {
      position: relative;
      overflow: hidden;
    }
    .hero-image-grid {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 3px;
    }
    .hero-img-block {
      background: var(--charcoal);
      overflow: hidden;
      position: relative;
    }
    .hero-img-block::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(196,169,109,0.1), transparent);
    }
    /* Fashion placeholder with fabric-like pattern */
    .hero-img-block:nth-child(1) { background: linear-gradient(145deg, #2A2520, #1A1815); }
    .hero-img-block:nth-child(2) { background: linear-gradient(145deg, #1E1C1A, #2D2825); margin-top: 3rem; }
    .hero-img-block:nth-child(3) { background: linear-gradient(145deg, #252220, #1C1A18); margin-top: -3rem; }
    .hero-img-block:nth-child(4) { background: linear-gradient(145deg, #221F1D, #2A2724); }

    .hero-img-block svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
    }

    /* Overlay gradient on hero right */
    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--warm-black) 0%, transparent 30%);
      z-index: 1;
    }

    /* Floating tag */
    .hero-tag {
      position: absolute;
      bottom: 3rem;
      left: 2rem;
      z-index: 5;
      background: rgba(17,17,16,0.7);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(196,169,109,0.3);
      padding: 1rem 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 1s forwards;
    }
    .hero-tag-label {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }
    .hero-tag-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--white);
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 4rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sand);
      opacity: 0;
      animation: fadeUp 0.8s 1.2s forwards;
    }
    .scroll-line {
      width: 2.5rem;
      height: 1px;
      background: var(--sand);
      position: relative;
      overflow: hidden;
    }
    .scroll-line::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: var(--gold);
      animation: lineScan 2s 1.5s infinite;
    }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      border-top: 1px solid rgba(196,169,109,0.2);
      border-bottom: 1px solid rgba(196,169,109,0.2);
      padding: 1rem 0;
      background: rgba(196,169,109,0.04);
      overflow: hidden;
      white-space: nowrap;
    }
    .marquee-track {
      display: inline-flex;
      animation: marquee 20s linear infinite;
    }
    .marquee-track span {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sand);
      padding: 0 2.5rem;
    }
    .marquee-track span.dot {
      color: var(--gold);
      padding: 0;
      letter-spacing: 0;
      font-size: 1rem;
    }

    /* ─── FEATURES ─── */
    .section { padding: 7rem 4rem; }
    .section-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .section-eyebrow::before {
      content: '';
      display: inline-block;
      width: 2rem;
      height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.5rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .section-title em { font-style: italic; color: var(--rose-light); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 5rem;
      background: rgba(196,169,109,0.1);
    }
    .feature-card {
      background: var(--warm-black);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.5s ease;
    }
    .feature-card:hover { background: #171614; }
    .feature-card:hover::before { width: 100%; }
    .feature-icon {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      display: block;
    }
    .feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.8rem;
    }
    .feature-desc {
      font-size: 0.88rem;
      line-height: 1.8;
      color: var(--sand);
    }
    .feature-num {
      position: absolute;
      top: 2rem; right: 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(196,169,109,0.07);
      line-height: 1;
    }

    /* ─── HOW IT WORKS ─── */
    .how-section {
      padding: 7rem 4rem;
      background: #0E0D0C;
      position: relative;
      overflow: hidden;
    }
    .how-section::before {
      content: '';
      position: absolute;
      top: -20rem; right: -20rem;
      width: 50rem;
      height: 50rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,169,109,0.04) 0%, transparent 70%);
    }
    .how-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 6rem;
      align-items: center;
      margin-top: 4rem;
    }
    .how-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .how-step {
      display: flex;
      gap: 2rem;
      padding: 2rem 0;
      border-bottom: 1px solid rgba(245,240,232,0.06);
      cursor: pointer;
      transition: padding-left 0.3s;
    }
    .how-step:hover { padding-left: 0.5rem; }
    .how-step:hover .step-num { color: var(--gold); }
    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: rgba(245,240,232,0.2);
      transition: color 0.3s;
      line-height: 1;
      min-width: 2.5rem;
    }
    .step-content {}
    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .step-desc {
      font-size: 0.85rem;
      line-height: 1.8;
      color: var(--sand);
    }

    .how-visual {
      position: relative;
    }
    .mockup-phone {
      width: 100%;
      max-width: 28rem;
      margin: 0 auto;
      display: block;
      background: #181715;
      border-radius: 2.5rem;
      border: 1px solid rgba(196,169,109,0.2);
      padding: 1.2rem;
      box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(196,169,109,0.08);
      position: relative;
    }
    .mockup-notch {
      width: 5rem;
      height: 1.2rem;
      background: #111;
      border-radius: 0 0 1rem 1rem;
      margin: 0 auto 1rem auto;
    }
    .mockup-screen {
      background: var(--bone);
      border-radius: 1.8rem;
      overflow: hidden;
      aspect-ratio: 9/16;
    }
    .mockup-header {
      background: var(--warm-black);
      padding: 1rem 1.2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .mockup-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--gold);
    }
    .mockup-body { padding: 0.8rem; }
    .mockup-card {
      background: white;
      border-radius: 0.8rem;
      margin-bottom: 0.6rem;
      overflow: hidden;
      display: flex;
      gap: 0.6rem;
      padding: 0.6rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .mockup-card-img {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 0.4rem;
      flex-shrink: 0;
    }
    .mockup-card-img.c1 { background: linear-gradient(135deg, #C9826B, #8B4A3A); }
    .mockup-card-img.c2 { background: linear-gradient(135deg, #6B89C9, #3A4E8B); }
    .mockup-card-img.c3 { background: linear-gradient(135deg, #7EC96B, #3A7A2E); }
    .mockup-card-text { flex: 1; }
    .mockup-card-name {
      font-size: 0.55rem;
      font-weight: 700;
      color: #1C1B19;
      letter-spacing: 0.05em;
      margin-bottom: 0.15rem;
    }
    .mockup-card-price {
      font-size: 0.5rem;
      color: #C9826B;
      font-weight: 600;
    }
    .mockup-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin-top: 0.6rem;
    }
    .mockup-grid-item {
      border-radius: 0.6rem;
      aspect-ratio: 1;
    }
    .mockup-grid-item.g1 { background: linear-gradient(135deg, #E8D5C4, #C4A08A); }
    .mockup-grid-item.g2 { background: linear-gradient(135deg, #C4D4E8, #8AA0C4); }
    .mockup-grid-item.g3 { background: linear-gradient(135deg, #D4E8C4, #A0C48A); }
    .mockup-grid-item.g4 { background: linear-gradient(135deg, #E8C4D4, #C48AA0); }

    /* Floating badge */
    .float-badge {
      position: absolute;
      top: 2rem; right: -1.5rem;
      background: var(--gold);
      color: var(--warm-black);
      padding: 0.8rem 1.2rem;
      border-radius: 0.5rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: 0 8px 24px rgba(196,169,109,0.3);
      animation: float 3s ease-in-out infinite;
    }
    .float-badge2 {
      position: absolute;
      bottom: 4rem; left: -1.5rem;
      background: var(--charcoal);
      border: 1px solid rgba(196,169,109,0.3);
      color: var(--cream);
      padding: 0.8rem 1.2rem;
      border-radius: 0.5rem;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      animation: float 3s 1.5s ease-in-out infinite;
    }
    .float-badge2 strong { color: var(--gold); }

    /* ─── STATS ─── */
    .stats-section {
      padding: 5rem 4rem;
      border-top: 1px solid rgba(196,169,109,0.1);
      border-bottom: 1px solid rgba(196,169,109,0.1);
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 1px;
      background: rgba(196,169,109,0.1);
    }
    .stat-item {
      background: var(--warm-black);
      padding: 3rem 2.5rem;
      text-align: center;
    }
    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-number span { color: var(--gold); }
    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sand);
    }

    /* ─── PLANS ─── */
    .plans-section {
      padding: 7rem 4rem;
      background: #0E0D0C;
    }
    .plans-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 4rem;
    }
    .plan-card {
      border: 1px solid rgba(196,169,109,0.15);
      padding: 3rem 2.5rem;
      position: relative;
      transition: border-color 0.3s, transform 0.3s;
    }
    .plan-card:hover {
      border-color: rgba(196,169,109,0.4);
      transform: translateY(-4px);
    }
    .plan-card.featured {
      border-color: var(--gold);
      background: rgba(196,169,109,0.04);
    }
    .plan-badge {
      position: absolute;
      top: -0.8rem; left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--warm-black);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.3rem 1.2rem;
    }
    .plan-name {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .plan-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .plan-price sub {
      font-size: 1rem;
      vertical-align: middle;
      color: var(--sand);
    }
    .plan-period {
      font-size: 0.78rem;
      color: var(--sand);
      margin-bottom: 0.5rem;
    }
    .plan-divider {
      width: 2rem;
      height: 1px;
      background: rgba(196,169,109,0.3);
      margin-bottom: 2rem;
    }
    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      margin-bottom: 2.5rem;
    }
    .plan-features li {
      font-size: 0.85rem;
      color: var(--sand);
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .plan-features li::before {
      content: '✦';
      color: var(--gold);
      font-size: 0.55rem;
      flex-shrink: 0;
    }
    .plan-features li.inactive {
      opacity: 0.3;
      text-decoration: line-through;
    }
    .plan-features li.inactive::before { color: var(--sand); }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section {
      padding: 7rem 4rem;
      overflow: hidden;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1.5rem;
      margin-top: 4rem;
    }
    .testimonial-card {
      border: 1px solid rgba(245,240,232,0.07);
      padding: 2.5rem;
      transition: border-color 0.3s;
    }
    .testimonial-card:hover { border-color: rgba(196,169,109,0.3); }
    .testimonial-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-style: italic;
      color: var(--cream);
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .author-avatar {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rose), var(--gold));
      flex-shrink: 0;
    }
    .author-name {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.05em;
    }
    .author-role {
      font-size: 0.72rem;
      color: var(--sand);
    }
    .testimonial-stars {
      color: var(--gold);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
    }

    /* ─── CTA FINAL ─── */
    .cta-section {
      padding: 8rem 4rem;
      background: #0A0908;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 40rem;
      height: 40rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,169,109,0.07) 0%, transparent 70%);
    }
    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 4.5rem);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 1.5rem;
      position: relative;
    }
    .cta-title em { font-style: italic; color: var(--gold); }
    .cta-desc {
      font-size: 0.95rem;
      color: var(--sand);
      max-width: 32rem;
      margin: 0 auto 3rem;
      line-height: 1.85;
    }
    .cta-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
    .cta-note {
      font-size: 0.72rem;
      color: var(--sand);
      margin-top: 1.5rem;
      letter-spacing: 0.05em;
    }
    .cta-note span { color: var(--gold); }

    /* ─── FOOTER ─── */
    footer {
      background: #080807;
      padding: 4rem 4rem 2rem;
      border-top: 1px solid rgba(196,169,109,0.12);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 4rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(245,240,232,0.06);
    }
    .footer-brand {}
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 1rem;
      display: block;
    }
    .footer-logo span { color: var(--gold); }
    .footer-tagline {
      font-size: 0.85rem;
      line-height: 1.8;
      color: var(--sand);
      margin-bottom: 1.5rem;
    }
    .footer-social {
      display: flex;
      gap: 0.8rem;
    }
    .social-btn {
      width: 2rem;
      height: 2rem;
      border: 1px solid rgba(196,169,109,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: var(--sand);
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s;
      decoration: none;
    }
    .social-btn:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col h4 {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col ul a {
      font-size: 0.85rem;
      color: var(--sand);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-col ul a:hover { color: var(--cream); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 2rem;
    }
    .footer-copy {
      font-size: 0.75rem;
      color: rgba(181,168,152,0.5);
    }
    .footer-love {
      font-size: 0.75rem;
      color: rgba(181,168,152,0.5);
    }
    .footer-love span { color: var(--rose); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @keyframes lineScan {
      from { left: -100%; }
      to { left: 100%; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── CONTACT SECTION ─── */
    .contact-section {
      padding: 0;
      background: #0A0908;
      position: relative;
      overflow: hidden;
    }

    /* Ambient glow */
    .contact-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 55%;
      height: 100%;
      background: radial-gradient(ellipse at 20% 50%, rgba(196,169,109,0.05) 0%, transparent 65%);
      pointer-events: none;
    }
    .contact-section::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 45%;
      height: 100%;
      background: radial-gradient(ellipse at 80% 30%, rgba(201,130,107,0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      min-height: 90vh;
      position: relative;
      z-index: 1;
    }

    /* ── LEFT PANEL ── */
    .contact-left {
      padding: 7rem 5rem 7rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid rgba(196,169,109,0.1);
      position: relative;
    }

    .contact-left::after {
      content: 'CONTATO';
      position: absolute;
      bottom: 3rem; left: -1.5rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 7rem;
      font-weight: 300;
      color: rgba(196,169,109,0.03);
      letter-spacing: 0.3em;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      pointer-events: none;
      user-select: none;
    }

    .contact-info-cards {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 3rem;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 1.8rem 0;
      border-bottom: 1px solid rgba(245,240,232,0.06);
      transition: padding-left 0.35s ease;
      cursor: default;
    }
    .contact-info-item:first-child { border-top: 1px solid rgba(245,240,232,0.06); }
    .contact-info-item:hover { padding-left: 0.6rem; }
    .contact-info-item:hover .contact-icon-wrap { border-color: var(--gold); }
    .contact-info-item:hover .contact-icon-wrap i { color: var(--gold); }

    .contact-icon-wrap {
      width: 2.8rem;
      height: 2.8rem;
      border: 1px solid rgba(196,169,109,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: border-color 0.35s;
    }
    .contact-icon-wrap i {
      font-size: 1.1rem;
      color: var(--sand);
      transition: color 0.35s;
    }

    .contact-info-text {}
    .contact-info-label {
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.35rem;
    }
    .contact-info-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--cream);
      line-height: 1.4;
    }
    .contact-info-value a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s;
    }
    .contact-info-value a:hover { color: var(--gold); }

    /* Social row */
    .contact-social-row {
      margin-top: 3rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .contact-social-label {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sand);
    }
    .contact-social-links {
      display: flex;
      gap: 0.6rem;
    }
    .contact-social-link {
      width: 2.4rem;
      height: 2.4rem;
      border: 1px solid rgba(196,169,109,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.3s, background 0.3s, transform 0.25s;
      text-decoration: none;
      color: var(--sand);
    }
    .contact-social-link i { font-size: 0.95rem; transition: color 0.3s; }
    .contact-social-link:hover {
      border-color: var(--gold);
      background: rgba(196,169,109,0.06);
      transform: translateY(-2px);
    }
    .contact-social-link:hover i { color: var(--gold); }

    /* Response time badge */
    .contact-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 2.5rem;
      padding: 0.65rem 1.1rem;
      border: 1px solid rgba(196,169,109,0.18);
      background: rgba(196,169,109,0.04);
      width: fit-content;
    }
    .contact-badge-dot {
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      background: #6FCF97;
      box-shadow: 0 0 8px rgba(111,207,151,0.5);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    .contact-badge-text {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sand);
    }
    .contact-badge-text span { color: var(--cream); }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(111,207,151,0.5); }
      50% { opacity: 0.6; box-shadow: 0 0 14px rgba(111,207,151,0.8); }
    }

    /* ── RIGHT PANEL — FORM ── */
    .contact-right {
      padding: 7rem 4rem 7rem 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: rgba(17,17,16,0.5);
    }

    .contact-form-header {
      margin-bottom: 3rem;
    }
    .contact-form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 0.8rem;
    }
    .contact-form-title em { font-style: italic; color: var(--rose-light); }
    .contact-form-subtitle {
      font-size: 0.85rem;
      color: var(--sand);
      line-height: 1.8;
    }

    /* Tab selector */
    .contact-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 2.5rem;
      border-bottom: 1px solid rgba(245,240,232,0.08);
    }
    .contact-tab {
      padding: 0.7rem 1.4rem;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sand);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color 0.3s, border-color 0.3s;
      background: transparent;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: 'Syne', sans-serif;
      font-weight: 500;
    }
    .contact-tab.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }
    .contact-tab:hover:not(.active) { color: var(--cream); }

    .contact-form { display: flex; flex-direction: column; gap: 0; }
    .contact-form.hidden { display: none; }

    /* Field grid */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      margin-bottom: 1px;
    }
    .form-field {
      position: relative;
      background: rgba(245,240,232,0.02);
      border: 1px solid rgba(245,240,232,0.07);
      transition: border-color 0.3s, background 0.3s;
      margin-bottom: 1px;
    }
    .form-row .form-field { border: none; outline: none; }
    .form-row {
      border: 1px solid rgba(245,240,232,0.07);
      background: rgba(245,240,232,0.02);
      transition: border-color 0.3s;
      margin-bottom: 1px;
      gap: 0;
    }
    .form-row .form-field {
      background: transparent;
      border-right: 1px solid rgba(245,240,232,0.07);
    }
    .form-row .form-field:last-child { border-right: none; }

    .form-field:focus-within,
    .form-row:focus-within {
      border-color: rgba(196,169,109,0.4);
      background: rgba(196,169,109,0.03);
    }

    .form-field label {
      display: block;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      padding: 1rem 1.2rem 0.3rem;
      pointer-events: none;
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      color: var(--cream);
      font-family: 'Syne', sans-serif;
      font-size: 0.88rem;
      padding: 0.3rem 1.2rem 0.9rem;
      resize: none;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: rgba(181,168,152,0.35); }
    .form-field select {
      appearance: none;
      cursor: pointer;
    }
    .form-field select option {
      background: #1C1B19;
      color: var(--cream);
    }
    .form-field .select-arrow {
      position: absolute;
      right: 1.2rem;
      bottom: 0.9rem;
      color: var(--sand);
      font-size: 0.75rem;
      pointer-events: none;
    }
    .form-field textarea { min-height: 7.5rem; padding-top: 0.3rem; }

    /* Character count */
    .field-footer {
      display: flex;
      justify-content: flex-end;
      padding: 0.2rem 1.2rem 0.5rem;
    }
    .char-count {
      font-size: 0.62rem;
      color: rgba(181,168,152,0.35);
      letter-spacing: 0.05em;
    }

    /* Checkbox row */
    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      padding: 1.2rem 0 0.5rem;
    }
    .form-check input[type="checkbox"] {
      width: 1rem;
      height: 1rem;
      accent-color: var(--gold);
      flex-shrink: 0;
      margin-top: 0.1rem;
      cursor: pointer;
    }
    .form-check label {
      font-size: 0.78rem;
      color: var(--sand);
      line-height: 1.6;
      cursor: pointer;
    }
    .form-check label a { color: var(--gold); text-decoration: none; }
    .form-check label a:hover { text-decoration: underline; }

    /* Submit */
    .form-submit-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.5rem;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .form-submit-hint {
      font-size: 0.72rem;
      color: var(--sand);
      line-height: 1.6;
    }
    .form-submit-hint i { color: var(--gold); margin-right: 0.3rem; }
    .btn-submit {
      background: var(--gold);
      color: var(--warm-black);
      font-family: 'Syne', sans-serif;
      font-size: 0.73rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      white-space: nowrap;
    }
    .btn-submit:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(196,169,109,0.25);
    }
    .btn-submit i { font-size: 0.9rem; }

    /* Success state */
    .form-success {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 4rem 2rem;
      gap: 1.2rem;
    }
    .form-success.show { display: flex; }
    .success-icon {
      width: 4rem;
      height: 4rem;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.5rem;
    }
    .success-icon i { font-size: 1.6rem; color: var(--gold); }
    .success-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--white);
    }
    .success-desc { font-size: 0.88rem; color: var(--sand); line-height: 1.8; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .contact-wrapper { grid-template-columns: 1fr; }
      .contact-left {
        padding: 5rem 2rem 3rem;
        border-right: none;
        border-bottom: 1px solid rgba(196,169,109,0.1);
      }
      .contact-right { padding: 3rem 2rem 5rem; }
      .contact-left::after { display: none; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      nav { padding: 1.2rem 2rem; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .hero-left { padding: 8rem 2rem 4rem; }
      .section { padding: 5rem 2rem; }
      .features-grid { grid-template-columns: 1fr; }
      .stats-section { grid-template-columns: 1fr 1fr; }
      .plans-grid { grid-template-columns: 1fr; max-width: 24rem; margin-left: auto; margin-right: auto; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr; }
      .how-visual { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .cta-section { padding: 5rem 2rem; }
      .how-section { padding: 5rem 2rem; }
      .plans-section { padding: 5rem 2rem; }
      .testimonials-section { padding: 5rem 2rem; }
    }
    .hero-img-block {
      position: relative;
      overflow: hidden;
    }

    .hero-img-block img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* preenche sem distorcer */
      display: block;
    } 
    /* Botão WhatsApp Fixo e Estiloso */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: var(--gold); /* Cor do seu projeto */
    color: var(--warm-black);
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    max-width: 50px; /* Começa apenas como um círculo */
}

.whatsapp-fixed i {
    font-size: 24px;
    min-width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-text {
    white-space: nowrap;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0;
    margin-left: 0;
    transition: all 0.4s ease;
}

/* Efeito Hover: Expande a largura e mostra o texto */
.whatsapp-fixed:hover {
    max-width: 250px; /* Largura suficiente para o texto */
    padding-right: 25px;
    background-color: #25D366; /* Muda para o verde oficial no hover, ou mantenha var(--gold) */
    color: #fff;
}

.whatsapp-fixed:hover .whatsapp-text {
    opacity: 1;
    margin-left: 10px;
}

/* Animação de pulso discreto */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.whatsapp-fixed {
    animation: pulse-whatsapp 2s infinite;
}
/* Seleciona os links dentro do footer */
footer a, 
.footer-social-link { /* ou a classe específica que usaste */
    text-decoration: none !important;
    border-bottom: none !important; /* Caso haja alguma borda inferior simulando sublinhado */
    outline: none;
}

/* Garante que o ícone dentro do link não herde decorações */
footer a i {
    text-decoration: none !important;
}

    /* ═══════════════════════════════════════
       MODAL DEMO — isolado, sem impacto no resto
       ═══════════════════════════════════════ */
    .demo-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;

      /* começa invisível */
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .demo-overlay.demo-open {
      opacity: 1;
      pointer-events: all;
    }

    /* backdrop com blur */
    .demo-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 7, 6, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      cursor: pointer;
    }

    /* caixa central */
    .demo-box {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 860px;
      background: #141312;
      border: 1px solid rgba(196,169,109,0.25);
      box-shadow:
        0 0 0 1px rgba(196,169,109,0.06),
        0 40px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(196,169,109,0.06);
      transform: translateY(28px) scale(0.97);
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .demo-overlay.demo-open .demo-box {
      transform: translateY(0) scale(1);
    }

    /* topo do modal */
    .demo-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 1.6rem 1.1rem;
      border-bottom: 1px solid rgba(196,169,109,0.12);
    }
    .demo-header-left {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .demo-header-pill {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      background: rgba(196,169,109,0.08);
      border: 1px solid rgba(196,169,109,0.2);
      padding: 0.3rem 0.85rem;
    }
    .demo-header-pill-dot {
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      background: var(--gold);
      animation: demo-pulse 2s ease-in-out infinite;
    }
    @keyframes demo-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(196,169,109,0.5); }
      50%       { box-shadow: 0 0 0 5px rgba(196,169,109,0); }
    }
    .demo-header-pill span {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'Syne', sans-serif;
      font-weight: 600;
    }
    .demo-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--cream);
      letter-spacing: 0.03em;
    }

    /* botões de controle */
    .demo-controls {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .demo-btn-back,
    .demo-btn-close {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.5rem 1rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: background 0.25s, color 0.25s, transform 0.2s;
    }
    .demo-btn-back {
      background: transparent;
      color: var(--sand);
      border: 1px solid rgba(245,240,232,0.14);
    }
    .demo-btn-back:hover {
      border-color: rgba(196,169,109,0.4);
      color: var(--gold);
      transform: translateY(-1px);
    }
    .demo-btn-back i { font-size: 0.85rem; }
    .demo-btn-close {
      background: rgba(196,169,109,0.1);
      color: var(--cream);
      border: 1px solid rgba(196,169,109,0.22);
    }
    .demo-btn-close:hover {
      background: var(--gold);
      color: var(--warm-black);
      transform: translateY(-1px);
    }
    .demo-btn-close i { font-size: 0.85rem; }

    /* área do vídeo — 16:9 responsivo */
    .demo-video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #0A0908;
      overflow: hidden;
    }
    .demo-video-wrap iframe,
    .demo-video-wrap video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* rodapé do modal */
    .demo-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 1.6rem;
      border-top: 1px solid rgba(196,169,109,0.1);
      gap: 1rem;
      flex-wrap: wrap;
    }
    .demo-footer-info {
      font-size: 0.72rem;
      color: var(--sand);
      line-height: 1.6;
    }
    .demo-footer-info i {
      color: var(--gold);
      margin-right: 0.3rem;
      vertical-align: middle;
    }
    .demo-footer-cta {
      background: var(--gold);
      color: var(--warm-black);
      font-family: 'Syne', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.65rem 1.6rem;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .demo-footer-cta:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(196,169,109,0.22);
    }
    .demo-footer-cta i { font-size: 0.85rem; }

    @media (max-width: 600px) {
      .demo-title { display: none; }
      .demo-btn-back span { display: none; }
      .demo-footer-info { display: none; }
    }
    <style>
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    padding: 40px 20px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.swiper {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover { color: #00d4ff; }

/* Customização das setas Swiper */
.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    after { font-size: 1.2rem; }
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
}

.btn-download {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-download:hover { background: rgba(255, 255, 255, 0.2); }

.btn-apresentacao {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff4e9b, #ff0066);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-apresentacao:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
