/*
Theme Name: Balloon Cestas
Theme URI: https://ballooncestas.com.br
Author: Leonardo Kinoshita
Description: Tema ultra rápido e otimizado para a Balloon Cestas (Curitiba). Focado em SEO Local, GEO, E-E-A-T e nota 100/100 no Google PageSpeed.
Version: 1.0
Text Domain: balloon

*/

    /* ═══════════════════════════════════════════
       DESIGN TOKENS E CSS COMPLETO
    ═══════════════════════════════════════════ */
    :root {
      --c-cream:    #FAF5EE;
      --c-sand:     #F2E8D9;
      --c-blush:    #E8C9B0;
      --c-terra:    #C06020;
      --c-rust:     #D4703A;
      --c-brown:    #7A4020;
      --c-pink:     #E8A090;
      --c-gold:     #D4A060;
      --c-dark:     #2C1810;
      --c-text:     #3D2010;
      --c-muted:    #8A6050;

      --f-display:  'Cormorant Garamond', Georgia, serif;
      --f-body:     'Plus Jakarta Sans', system-ui, sans-serif;

      --r-sm: 12px;
      --r-md: 20px;
      --r-lg: 32px;
      --r-xl: 48px;

      --shadow-soft: 0 4px 32px rgba(120, 60, 20, 0.08);
      --shadow-card: 0 2px 16px rgba(120, 60, 20, 0.10);
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--f-body);
      background: var(--c-cream);
      color: var(--c-text);
      line-height: 1.65;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font: inherit; }

    h1, h2, h3 {
      font-family: var(--f-display);
      line-height: 1.15;
      font-weight: 600;
      color: var(--c-brown);
    }
    h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
    h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 400; }
    p  { font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--c-muted); }

    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
    .badge {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--c-sand);
      color: var(--c-terra);
    }

    /* NAV */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(250, 245, 238, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(212, 112, 58, 0.12);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px; gap: 16px;
    }
    .nav__logo {
      display: flex; align-items: center; gap: 10px;
    }
    .nav__logo-mark {
      width: 44px; height: 44px;
      background: var(--c-rust);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .nav__logo-mark svg { width: 24px; height: 24px; }
    .nav__brand {
      font-family: var(--f-display);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--c-brown);
      line-height: 1.2;
    }
    .nav__brand small { display: block; font-family: var(--f-body); font-size: 0.65rem; font-weight: 500; color: var(--c-muted); letter-spacing: 0.1em; text-transform: uppercase; }
    .nav__links {
      display: flex; gap: 32px; list-style: none;
    }
    .nav__links a {
      font-size: 0.875rem; font-weight: 500; color: var(--c-muted);
      transition: color var(--transition);
    }
    .nav__links a:hover { color: var(--c-rust); }
    .nav__cta {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 22px;
      background: var(--c-rust);
      color: #fff;
      border-radius: 999px;
      font-size: 0.875rem; font-weight: 600;
      transition: background var(--transition), transform var(--transition);
      white-space: nowrap;
    }
    .nav__cta:hover { background: var(--c-terra); transform: translateY(-1px); }
    .nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
    .nav__toggle span { width: 22px; height: 2px; background: var(--c-brown); border-radius: 2px; transition: var(--transition); }

    /* HERO */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex; align-items: center;
      overflow: hidden;
      background: var(--c-sand);
    }
    .hero__bg {
      position: absolute; inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .hero__blob {
      position: absolute;
      border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
      opacity: 0.25;
    }
    .hero__blob--1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, var(--c-rust) 0%, var(--c-blush) 100%);
      top: -120px; right: -100px;
      animation: morphBlob1 12s ease-in-out infinite alternate;
    }
    .hero__blob--2 {
      width: 380px; height: 380px;
      background: radial-gradient(circle, var(--c-pink) 0%, var(--c-gold) 100%);
      bottom: -80px; left: -60px;
      animation: morphBlob2 15s ease-in-out infinite alternate;
    }
    .hero__blob--3 {
      width: 200px; height: 200px;
      background: var(--c-gold);
      top: 40%; right: 28%;
      border-radius: 50%;
      opacity: 0.12;
    }
    @keyframes morphBlob1 {
      0%   { border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; transform: scale(1) rotate(0deg); }
      100% { border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%; transform: scale(1.08) rotate(8deg); }
    }
    @keyframes morphBlob2 {
      0%   { border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%; transform: scale(1) rotate(0deg); }
      100% { border-radius: 70% 30% 40% 60% / 40% 60% 70% 30%; transform: scale(1.06) rotate(-10deg); }
    }

    .hero__rainbow {
      position: absolute;
      right: -40px; top: -20px;
      width: 520px; height: 300px;
      opacity: 0.18;
      pointer-events: none;
    }
    .hero__inner {
      position: relative; z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 80px 0;
    }
    .hero__content { max-width: 520px; }
    .hero__eyebrow {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 24px;
    }
    .hero__eyebrow-line {
      width: 32px; height: 2px;
      background: var(--c-rust);
      border-radius: 2px;
    }
    .hero__eyebrow-text {
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--c-rust);
    }
    .hero__title {
      margin-bottom: 20px;
      color: var(--c-brown);
    }
    .hero__title em {
      font-style: italic;
      color: var(--c-rust);
    }
    .hero__desc {
      font-size: 1.05rem;
      color: var(--c-muted);
      margin-bottom: 36px;
      max-width: 420px;
    }
    .hero__actions {
      display: flex; gap: 14px; flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px;
      background: var(--c-rust);
      color: #fff;
      border-radius: 999px;
      font-size: 0.9rem; font-weight: 600;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 20px rgba(212, 112, 58, 0.35);
    }
    .btn-primary:hover { background: var(--c-terra); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212, 112, 58, 0.40); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px;
      border: 2px solid var(--c-rust);
      color: var(--c-rust);
      border-radius: 999px;
      font-size: 0.9rem; font-weight: 600;
      transition: background var(--transition), color var(--transition), transform var(--transition);
    }
    .btn-outline:hover { background: var(--c-rust); color: #fff; transform: translateY(-2px); }

    .hero__visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .hero__card {
      position: relative;
      width: 100%; max-width: 420px;
      aspect-ratio: 4/5;
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(120, 60, 20, 0.22);
    }
    .hero__card-inner {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--c-blush) 0%, var(--c-sand) 40%, var(--c-cream) 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 40px;
      gap: 16px;
    }
    .hero__logo-display {
      width: 200px; height: 200px;
      background: transparent;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .hero__card-text {
      text-align: center;
    }
    .hero__card-text h3 {
      font-size: 1.4rem;
      color: var(--c-brown);
      margin-bottom: 6px;
    }
    .hero__card-text p {
      font-size: 0.85rem;
    }

    .hero__float-badge {
      position: absolute;
      bottom: -20px; left: -30px;
      background: #fff;
      border-radius: var(--r-md);
      padding: 14px 18px;
      box-shadow: var(--shadow-soft);
      display: flex; align-items: center; gap: 10px;
    }
    .hero__float-badge-icon {
      width: 36px; height: 36px;
      background: var(--c-sand);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .hero__float-badge-text { font-size: 0.8rem; line-height: 1.3; }
    .hero__float-badge-text strong { display: block; color: var(--c-brown); font-weight: 600; font-size: 0.85rem; }

    .hero__float-badge2 {
      position: absolute;
      top: 20px; right: -20px;
      background: var(--c-rust);
      border-radius: var(--r-md);
      padding: 12px 16px;
      box-shadow: 0 8px 24px rgba(212, 112, 58, 0.3);
      color: #fff;
      text-align: center;
    }
    .hero__float-badge2 strong { display: block; font-size: 1.4rem; font-family: var(--f-display); font-weight: 600; line-height: 1; }
    .hero__float-badge2 span { font-size: 0.7rem; font-weight: 500; opacity: 0.85; }

    .hero__trust {
      display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap;
    }
    .hero__trust-item {
      display: flex; align-items: center; gap: 8px;
    }
    .hero__trust-icon { font-size: 1rem; }
    .hero__trust-text { font-size: 0.8rem; color: var(--c-muted); font-weight: 500; }

    /* SEÇÕES SHARED */
    .section { padding: 96px 0; }
    .section--alt { background: var(--c-sand); }
    .section__header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
    .section__header .badge { margin-bottom: 14px; }
    .section__header p { margin-top: 12px; font-size: 1rem; }

    /* DIFERENCIAIS */
    .features__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }
    .feature-card {
      background: #fff;
      border-radius: var(--r-lg);
      padding: 36px 28px;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition);
      border: 1px solid rgba(212, 112, 58, 0.08);
    }
    .feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(120, 60, 20, 0.14); }
    .feature-card__icon {
      width: 56px; height: 56px;
      background: var(--c-sand);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }
    .feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--c-brown); }
    .feature-card p { font-size: 0.875rem; line-height: 1.6; }

    /* CATEGORIAS */
    .products__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }
    .product-card {
      border-radius: var(--r-xl);
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition);
    }
    .product-card:hover { transform: translateY(-8px); }
    .product-card__image {
      height: 220px;
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem;
      position: relative;
      overflow: hidden;
    }
    .product-card__image::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
    }
    .product-card__body { padding: 24px; }
    .product-card__badge { margin-bottom: 10px; }
    .product-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
    .product-card p { font-size: 0.85rem; margin-bottom: 16px; }
    .product-card__cta {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.8rem; font-weight: 600;
      color: var(--c-rust);
      transition: gap var(--transition);
    }
    .product-card__cta:hover { gap: 10px; }

    /* PROCESSO */
    .process__steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
      position: relative;
    }
    .process__steps::before {
      content: '';
      position: absolute;
      top: 32px; left: 60px; right: 60px; height: 2px;
      background: linear-gradient(90deg, var(--c-blush), var(--c-rust), var(--c-blush));
      z-index: 0;
    }
    .step {
      text-align: center;
      position: relative; z-index: 1;
    }
    .step__number {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--c-rust);
      color: #fff;
      font-family: var(--f-display);
      font-size: 1.5rem; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      box-shadow: 0 4px 16px rgba(212, 112, 58, 0.35);
    }
    .step h3 { font-size: 1rem; margin-bottom: 8px; }
    .step p { font-size: 0.85rem; }

    /* DEPOIMENTOS */
    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .testimonial-card {
      background: #fff;
      border-radius: var(--r-lg);
      padding: 32px;
      box-shadow: var(--shadow-card);
      border-left: 4px solid var(--c-rust);
    }
    .testimonial-card__stars { color: var(--c-gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
    .testimonial-card blockquote { font-family: var(--f-display); font-style: italic; font-size: 1.05rem; color: var(--c-brown); line-height: 1.5; margin-bottom: 16px; }
    .testimonial-card__author { display: flex; align-items: center; gap: 12px; }
    .testimonial-card__avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--c-sand);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .testimonial-card__name strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--c-brown); }
    .testimonial-card__name span { font-size: 0.75rem; color: var(--c-muted); }

    /* SOBRE / E-E-A-T */
    .about__inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 72px;
      align-items: center;
    }
    .about__visual {
      position: relative;
    }
    .about__image-wrap {
      border-radius: var(--r-xl);
      overflow: hidden;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, var(--c-blush) 0%, var(--c-sand) 60%, var(--c-cream) 100%);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 24px 60px rgba(120, 60, 20, 0.18);
    }
    .about__image-placeholder {
      font-size: 6rem;
      text-align: center;
    }
    .about__stat-card {
      position: absolute;
      bottom: -16px; right: -20px;
      background: var(--c-rust);
      color: #fff;
      padding: 20px 24px;
      border-radius: var(--r-lg);
      box-shadow: 0 8px 32px rgba(212, 112, 58, 0.35);
    }
    .about__stat-card strong {
      display: block;
      font-family: var(--f-display);
      font-size: 2rem; font-weight: 600;
      line-height: 1;
    }
    .about__stat-card span { font-size: 0.8rem; opacity: 0.9; font-weight: 500; }
    .about__content .badge { margin-bottom: 16px; }
    .about__content h2 { margin-bottom: 20px; }
    .about__content p { margin-bottom: 14px; }
    .about__values { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .about__value {
      background: var(--c-sand);
      border-radius: var(--r-md);
      padding: 16px 18px;
    }
    .about__value strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--c-brown); margin-bottom: 4px; }
    .about__value span { font-size: 0.78rem; color: var(--c-muted); }

    /* TERMOS */
    .terms { background: var(--c-sand); }
    .terms__inner {
      max-width: 780px;
      margin: 0 auto;
      background: #fff;
      border-radius: var(--r-xl);
      padding: 52px;
      box-shadow: var(--shadow-card);
    }
    .terms__inner h2 { text-align: center; margin-bottom: 6px; }
    .terms__subtitle { text-align: center; font-size: 0.85rem; color: var(--c-muted); margin-bottom: 36px; letter-spacing: 0.05em; text-transform: uppercase; }
    .terms__item { margin-bottom: 28px; }
    .terms__item h3 { font-size: 1rem; color: var(--c-brown); margin-bottom: 8px; }
    .terms__item p { font-size: 0.9rem; line-height: 1.7; }
    .terms__bullet { display: flex; gap: 10px; align-items: flex-start; }
    .terms__bullet::before { content: '•'; color: var(--c-rust); font-size: 1.2rem; flex-shrink: 0; margin-top: -2px; }

    /* CTA BANNER */
    .cta-banner {
      background: linear-gradient(135deg, var(--c-brown) 0%, var(--c-terra) 60%, var(--c-rust) 100%);
      padding: 80px 0;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      top: -200px; right: -100px;
      pointer-events: none;
    }
    .cta-banner::after {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
      bottom: -120px; left: 5%;
      pointer-events: none;
    }
    .cta-banner__inner {
      text-align: center;
      position: relative; z-index: 1;
    }
    .cta-banner h2 { color: #fff; margin-bottom: 14px; }
    .cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; }
    .cta-banner__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px;
      background: #fff;
      color: var(--c-rust);
      border-radius: 999px;
      font-size: 0.9rem; font-weight: 700;
      transition: transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.20); }
    .btn-white-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px;
      border: 2px solid rgba(255,255,255,0.6);
      color: #fff;
      border-radius: 999px;
      font-size: 0.9rem; font-weight: 600;
      transition: border-color var(--transition), background var(--transition), transform var(--transition);
    }
    .btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

    /* FOOTER */
    .footer {
      background: var(--c-dark);
      color: rgba(255,255,255,0.7);
      padding: 60px 0 28px;
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer__logo {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 14px;
    }
    .footer__logo-mark {
      width: 40px; height: 40px;
      background: var(--c-rust);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .footer__logo-name {
      font-family: var(--f-display);
      font-size: 1.1rem; font-weight: 600;
      color: #fff;
      line-height: 1.2;
    }
    .footer__logo-name small { font-family: var(--f-body); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; display: block; }
    .footer__desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
    .footer__socials { display: flex; gap: 12px; }
    .footer__social {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background var(--transition);
    }
    .footer__social:hover { background: var(--c-rust); }
    .footer__social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.8); }
    .footer__col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
    .footer__col ul { list-style: none; }
    .footer__col ul li { margin-bottom: 10px; }
    .footer__col ul a { font-size: 0.85rem; opacity: 0.7; transition: opacity var(--transition); }
    .footer__col ul a:hover { opacity: 1; }
    .footer__contact-item { display: flex; gap: 8px; font-size: 0.85rem; margin-bottom: 10px; align-items: flex-start; }
    .footer__contact-icon { opacity: 0.5; flex-shrink: 0; }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer__bottom p { font-size: 0.78rem; opacity: 0.5; }
    .footer__bottom-links { display: flex; gap: 20px; }
    .footer__bottom-links a { font-size: 0.78rem; opacity: 0.5; transition: opacity var(--transition); }
    .footer__bottom-links a:hover { opacity: 0.9; }

    /* WHATSAPP FLOAT */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 1000;
    }
    .wa-float a {
      display: flex; align-items: center; gap: 10px;
      background: #25D366;
      color: #fff;
      padding: 14px 22px;
      border-radius: 999px;
      font-size: 0.875rem; font-weight: 700;
      box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
      transition: transform var(--transition), box-shadow var(--transition);
      animation: waFloat 3s ease-in-out infinite;
    }
    .wa-float a:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5); }
    @keyframes waFloat {
      0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
      50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6); }
    }
    .wa-float svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

    /* ANIMATIONS (fade-up) */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(1) { transition-delay: 0s; }
    .fade-up:nth-child(2) { transition-delay: 0.08s; }
    .fade-up:nth-child(3) { transition-delay: 0.16s; }
    .fade-up:nth-child(4) { transition-delay: 0.24s; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 0; }
      .hero__visual { display: none; }
      .about__inner { grid-template-columns: 1fr; }
      .about__visual { display: none; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .process__steps::before { display: none; }
      .nav__links { display: none; }
    }
    @media (max-width: 600px) {
      .footer__grid { grid-template-columns: 1fr; }
      .footer__bottom { flex-direction: column; text-align: center; }
      .nav__toggle { display: flex; }
      .nav__cta span { display: none; }
      .hero__actions { flex-direction: column; align-items: flex-start; }
      .terms__inner { padding: 32px 24px; }
    }

    /* Mobile nav */
    .nav__mobile {
      display: none;
      flex-direction: column;
      gap: 0;
      background: var(--c-cream);
      border-top: 1px solid rgba(212, 112, 58, 0.12);
    }
    .nav__mobile.open { display: flex; }
    .nav__mobile a {
      padding: 14px 24px;
      font-size: 0.9rem; font-weight: 500;
      color: var(--c-muted);
      border-bottom: 1px solid rgba(212, 112, 58, 0.08);
      transition: color var(--transition), background var(--transition);
    }
    .nav__mobile a:hover { color: var(--c-rust); background: var(--c-sand); }


/* =========================================================
   RODAPÉ BALLOON CESTAS - AJUSTES FINAIS DE ALINHAMENTO (CHROME/SAFARI SAFE)
========================================================= */

/* Corrige a estrutura do rodapé de baixo (footer__bottom) */
.footer__bottom {
  display: flex;
  flex-direction: column; /* Force columns to wrap */
  align-items: center;    /* Centralize columns vertically */
  gap: 15px;              /* Space between elements */
  text-align: center;     /* Centralize all text */
  margin-top: 20px;       /* Give some air above */
}

/* Container para alinhar copyright e links juntos */
.footer__bottom-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

/* Links de Termos e Condições */
.footer__bottom-links {
  display: flex;
  gap: 15px;
}

/* Estilos da Assinatura Leo K (Ajustados e Centralizados) */
.credit-leok {
  display: flex; /* Mudança de inline-flex para flex */
  align-items: center;
  justify-content: center; /* Centraliza o conteúdo da assinatura */
  gap: 5px;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  margin-top: 0; /* Remove margem desnecessária */
}

.credit-leok:hover { opacity: 1; }

.credit-leok a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.credit-leok a:hover { color: #e02020; }

.credit-leok a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #e02020;
  transition: width 0.3s ease;
}

.credit-leok a:hover::after { width: 100%; }

.credit-leok svg {
  width: 14px;
  height: 14px;
  fill: #e02020;
  animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* =========================================================
   WHATSAPP FLOAT - AJUSTE MOBILE (Evita sobreposição)
========================================================= */

/* AJUSTE PARA MOBILE: Cria o "respiro" no rodapé */
@media (max-width: 600px) {
  /* Adiciona espaço extra no próprio rodapé para o botão não cobrir o texto */
  .footer {
    padding-bottom: 100px !important; /* Respiro generoso para o botão flutuante */
  }

  /* Ajusta a posição do botão no celular */
  .wa-float {
    bottom: 20px;
    right: 20px;
  }
}