
  :root {
    --cream: #FDF6EE;
    --blush: #F2C4C4;
    --rose: #E07E7E;
    --deep: #C45C5C;
    --wine: #7A2D3A;
    --sand: #E8D5C0;
    --gold: #C9974A;
    --dark: #2A1A1A;
    --muted: #8A6A6A;
    --white: #FFFFFF;
    --card-bg: rgba(255,255,255,0.85);
    --radius: 20px;
    --radius-lg: 32px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── CANVAS CORAÇÕES ── */
  #hearts-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(253,246,238,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(200,140,140,0.15);
    transition: box-shadow 0.3s;
  }

  nav.scrolled { box-shadow: 0 4px 30px rgba(122,45,58,0.1); }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: var(--wine);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-logo span { font-size: 1.6rem; }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--wine); }

  .nav-cta {
    background: var(--wine);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
  }

  .nav-cta:hover { background: var(--deep) !important; transform: translateY(-1px); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wine);
    border-radius: 2px;
    transition: 0.3s;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
  }

  .hero-inner { max-width: 720px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blush);
    color: var(--wine);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    line-height: 1.13;
    color: var(--dark);
    margin-bottom: 22px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--wine);
  }

  .hero-sub {
    font-size: 1.12rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--wine);
    color: white;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(122,45,58,0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary:hover { background: var(--deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(122,45,58,0.3); }

  .btn-outline {
    background: transparent;
    color: var(--wine);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--blush);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-outline:hover { border-color: var(--rose); background: var(--blush); transform: translateY(-2px); }

  .hero-envelope {
    margin-top: 60px;
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  /* ── SECTION BASE ── */
  section { position: relative; z-index: 1; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blush);
    color: var(--wine);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    font-weight: 300;
  }

  /* ── COMO FUNCIONA ── */
  #como-funciona {
    padding: 100px 48px;
    background: linear-gradient(180deg, var(--cream) 0%, #FAF0E8 100%);
  }

  .como-inner { max-width: 1100px; margin: 0 auto; }

  .como-header { text-align: center; margin-bottom: 64px; }

  .como-header .section-sub { margin: 0 auto; }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
  }

  .step-card {
    background: var(--card-bg);
    border: 1px solid rgba(200,150,150,0.18);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }

  .step-card::before {
    content: attr(data-n);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wine);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
  }

  .step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(122,45,58,0.12); }

  .step-icon {
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(122,45,58,0.08);
    color: #7a2d3a;
    margin: 0 auto 20px;
  }

  .step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
  }

  .step-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── FOTOS ── */
  #fotos {
    padding: 100px 48px;
    background: var(--wine);
    color: white;
    overflow: hidden;
  }

  .fotos-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  #fotos .section-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
  #fotos .section-title { color: white; }
  #fotos .section-sub { color: rgba(255,255,255,0.68); }

  .fotos-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .fotos-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
  }

  .fotos-bullets li .fb-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin-top: 1px;
  }

  .fotos-bullets li strong {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.9rem;
  }

  .fotos-bullets li span { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

  /* Carrossel */
  .foto-carousel {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .carousel-track {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    aspect-ratio: 3/4;
  }

  .carousel-slide {
    grid-area: 1/1;
    opacity: 0;
    transition: opacity 0.8s ease;
    position: relative;
  }

  .carousel-slide.active { opacity: 1; }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .carousel-slide .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    padding: 40px 22px 22px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0.85;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }

  .carousel-dot.active {
    background: white;
    width: 22px;
    border-radius: 3px;
  }

  /* timeline linhas decorativas */
  .foto-timeline-lines {
    position: absolute;
    left: -28px;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: rgba(255,255,255,0.15);
    display: none;
  }

  /* ── CATEGORIAS ── */
  #categorias {
    padding: 100px 48px;
    background: var(--cream);
  }

  .cat-inner { max-width: 1100px; margin: 0 auto; }

  .cat-header { text-align: center; margin-bottom: 56px; }

  .cat-header .section-sub { margin: 0 auto; }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

  .cat-card {
    background: var(--card-bg);
    border: 1.5px solid rgba(200,150,150,0.18);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
  }

  .cat-card:hover, .cat-card.active {
    background: var(--wine);
    border-color: var(--wine);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(122,45,58,0.2);
  }

  .cat-card:hover .cat-name, .cat-card.active .cat-name { color: white; }
  .cat-card:hover .cat-desc, .cat-card.active .cat-desc { color: rgba(255,255,255,0.7); }

  .cat-emoji { font-size: 2.6rem; margin-bottom: 14px; display: block; }

  .cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 6px;
    transition: color 0.3s;
  }

  .cat-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    transition: color 0.3s;
  }

  /* ── FORMULÁRIO ── */
  #formulario {
    padding: 100px 48px;
    background: linear-gradient(135deg, #FDF6EE 0%, #F9ECE3 50%, #FDF6EE 100%);
  }

  .form-inner { max-width: 760px; margin: 0 auto; }

  .form-header { text-align: center; margin-bottom: 52px; }

  .form-header .section-sub { margin: 0 auto; }

  .form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 52px 48px;
    box-shadow: 0 24px 80px rgba(122,45,58,0.1);
    border: 1px solid rgba(200,150,150,0.12);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

  .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

  .form-group label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .form-group label .lbl-emoji { font-size: 1rem; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 1.5px solid #EDD8D0;
    border-radius: 12px;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    color: var(--dark);
    background: #FFFAF7;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(224,126,126,0.12);
    background: white;
  }

  .form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

  .form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6A6A' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

  .char-count {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: right;
    margin-top: 4px;
  }

  /* Upload fotos */
  .upload-area {
    border: 2px dashed #EDD8D0;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
  }

  .upload-area:hover { border-color: var(--rose); background: #FFF5F5; }

  .upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .upload-icon { font-size: 2rem; margin-bottom: 8px; display: block; }

  .upload-area p { font-size: 0.87rem; color: var(--muted); }
  .upload-area strong { color: var(--wine); }

  .fotos-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
  }

  .foto-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--blush);
    position: relative;
  }

  .foto-thumb-wrap { position: relative; display: inline-block; }

  .foto-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: var(--wine);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    line-height: 1;
  }

  /* Música opcional */
  .music-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid #EDD8D0;
    background: #FFFAF7;
    transition: border-color 0.2s;
    margin-bottom: 16px;
  }

  .music-toggle:hover { border-color: var(--rose); }

  .music-toggle input { display: none; }

  .toggle-track {
    width: 40px;
    height: 22px;
    background: #ddd;
    border-radius: 11px;
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
  }

  .toggle-track::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  }

  .music-toggle input:checked ~ .toggle-track { background: var(--wine); }
  .music-toggle input:checked ~ .toggle-track::after { transform: translateX(18px); }

  .toggle-label { font-size: 0.9rem; color: var(--dark); font-weight: 500; }
  .toggle-sub { font-size: 0.78rem; color: var(--muted); }

  .music-fields { display: none; }
  .music-fields.visible { display: block; }

  .optional-tag {
    background: #F5E6D8;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-left: 8px;
  }

  /* Divider */
  .form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    color: var(--muted);
    font-size: 0.8rem;
  }

  .form-divider::before, .form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #EDD8D0;
  }

  /* Submit */
  .btn-enviar {
    width: 100%;
    background: var(--wine);
    color: white;
    padding: 17px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(122,45,58,0.28);
    font-family: 'DM Sans', sans-serif;
    margin-top: 12px;
  }

  .btn-enviar:hover { background: var(--deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(122,45,58,0.35); }
  .btn-enviar:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

  /* ── MODAL PAGAMENTO ── */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,26,26,0.6);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }

  .overlay.open { opacity: 1; pointer-events: all; }

  .modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    max-height: 90vh;
    overflow-y: auto;
  }

  .overlay.open .modal { transform: translateY(0) scale(1); }

  .modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #F5EBE8;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: background 0.2s;
  }

  .modal-close:hover { background: var(--blush); }

  .modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blush);
    color: var(--wine);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
  }

  .modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .modal-sub {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* Tabs pagamento */
  .pay-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
  }

  .pay-tab {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #EDD8D0;
    background: #FFFAF7;
    cursor: pointer;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .pay-tab:hover { border-color: var(--rose); color: var(--wine); }

  .pay-tab.active {
    border-color: var(--wine);
    background: var(--wine);
    color: white;
  }

  .pay-panel { display: none; }
  .pay-panel.active { display: block; }

  /* Pix */
  .pix-box {
    background: linear-gradient(135deg, #F0FAF4, #E8F5ED);
    border: 1.5px solid #9ED9B4;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 16px;
  }

  .pix-icon { font-size: 2.4rem; margin-bottom: 10px; display: block; }

  .pix-chave {
    background: white;
    border: 1.5px solid #9ED9B4;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1A6B3A;
    letter-spacing: 0.02em;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .pix-copy {
    background: #1A6B3A;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
  }

  .pix-copy:hover { background: #155530; }

  .pix-valor {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1A6B3A;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .pix-nome { font-size: 0.82rem; color: #4A8A62; }

  .pix-instrucao {
    background: #FFF8E6;
    border: 1px solid #F0D080;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.83rem;
    color: #7A5A10;
    line-height: 1.6;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  /* MP */
  .mp-box {
    background: linear-gradient(135deg, #FFF8E6, #FFF3D6);
    border: 1.5px solid #F0D080;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 16px;
  }

  .mp-logo { font-size: 2.4rem; margin-bottom: 10px; display: block; }

  .btn-mp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #009EE3;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.97rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin: 16px auto 0;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0,158,227,0.3);
  }

  .btn-mp:hover { background: #007BB5; transform: translateY(-1px); }

  /* Aviso aguardar */
  .aguardar-box {
    background: linear-gradient(135deg, #FDF0F5, #FDE8EF);
    border: 1.5px solid var(--blush);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 20px;
  }

  .aguardar-box .icon { font-size: 1.6rem; flex-shrink: 0; }

  .aguardar-box strong { display: block; color: var(--wine); font-size: 0.9rem; margin-bottom: 4px; }
  .aguardar-box p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

  /* ── TELA SUCESSO ── */
  .success-overlay {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .success-overlay.open { opacity: 1; pointer-events: all; }

  .success-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 56px 44px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(122,45,58,0.12);
    transform: scale(0.92);
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  }

  .success-overlay.open .success-card { transform: scale(1); }

  .success-emoji {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 20px;
    animation: bounceIn 0.6s 0.3s both;
  }

  @keyframes bounceIn {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
  }

  .success-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .success-card p {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .success-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
  }

  .success-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FDF6EE;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 0.88rem;
    color: var(--dark);
    font-weight: 500;
  }

  .success-steps li .s-num {
    width: 26px;
    height: 26px;
    background: var(--wine);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .btn-voltar {
    background: transparent;
    color: var(--wine);
    border: 2px solid var(--blush);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
  }

  .btn-voltar:hover { background: var(--blush); border-color: var(--rose); }

  /* Loading spinner no botão */
  .spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  /* ── BOTÃO SUGESTÃO DE MENSAGEM ── */
  .msg-sugestao-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .msg-sugestao-wrap label {
    font-size: 0.83rem; font-weight: 600; color: var(--dark);
    letter-spacing: 0.02em; display: flex; align-items: center; gap: 6px;
  }
  .btn-sugerir {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, #FDF0F5, #F2C4C4);
    color: var(--wine); border: 1.5px solid var(--blush);
    border-radius: 50px; padding: 7px 16px;
    font-size: 0.78rem; font-weight: 700; cursor: pointer;
    transition: all 0.2s; font-family: 'DM Sans', sans-serif; white-space: nowrap;
  }
  .btn-sugerir:hover { background: var(--wine); color: white; border-color: var(--wine); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(122,45,58,0.2); }
  .btn-sugerir:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

  /* ── MODAL SUGESTÕES ── */
  .sugestao-overlay {
    position: fixed; inset: 0;
    background: rgba(42,26,26,0.55);
    backdrop-filter: blur(5px);
    z-index: 250; display: flex;
    align-items: flex-end; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  @media (min-width: 600px) { .sugestao-overlay { align-items: center; padding: 24px; } }
  .sugestao-overlay.open { opacity: 1; pointer-events: all; }
  .sugestao-modal {
    background: white; border-radius: 28px 28px 0 0;
    padding: 32px 28px 36px; width: 100%; max-width: 560px;
    max-height: 88vh; overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
  }
  @media (min-width: 600px) { .sugestao-modal { border-radius: 28px; } }
  .sugestao-overlay.open .sugestao-modal { transform: translateY(0); }
  .sugestao-drag { width: 40px; height: 4px; background: #E8D5C0; border-radius: 2px; margin: 0 auto 20px; }
  .sugestao-modal h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--dark); margin-bottom: 6px; }
  .sugestao-modal .sub { font-size: 0.83rem; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
  .sugestao-lista { display: flex; flex-direction: column; gap: 14px; }
  .sugestao-item {
    border: 1.5px solid #EDD8D0; border-radius: 16px; padding: 18px 20px;
    cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden;
  }
  .sugestao-item:hover { border-color: var(--rose); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,45,58,0.1); }
  .sugestao-item-label { font-size: 0.78rem; font-weight: 700; color: var(--wine); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
  .sugestao-item-preview { font-size: 0.88rem; color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .sugestao-item-btn { margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; background: var(--wine); color: white; border: none; border-radius: 50px; padding: 7px 16px; font-size: 0.78rem; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
  .sugestao-item-btn:hover { background: var(--deep); }
  .sugestao-close { position: absolute; top: 16px; right: 20px; width: 32px; height: 32px; border-radius: 50%; background: #F5EBE8; border: none; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: background 0.2s; }
  .sugestao-close:hover { background: var(--blush); }
  .sugestao-aviso { background: #FFF8E6; border: 1px solid #F0D080; border-radius: 10px; padding: 14px 16px; font-size: 0.85rem; color: #7A5A10; margin-bottom: 20px; display: none; line-height: 1.5; }
  .sugestao-aviso.visible { display: block; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 64px 48px 32px;
  }

  .footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .nav-logo {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 14px;
    display: inline-flex;
  }

  .footer-brand p {
    font-size: 0.87rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 240px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .social-btn:hover { background: var(--wine); transform: translateY(-2px); }

  .footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

  .footer-col ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 0.87rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-col ul li a:hover { color: white; }

  .footer-bottom {
    max-width: 1100px;
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-bottom a:hover { color: white; }

  /* ── TOAST ── */
  .toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--dark);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }

  .toast.show { transform: translateX(-50%) translateY(0); }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: rgba(253,246,238,0.97);
      padding: 24px;
      gap: 20px;
      border-bottom: 1px solid rgba(200,140,140,0.15);
    }
    .nav-links.open .nav-cta { text-align: center; }
    #como-funciona, #fotos, #categorias, #formulario { padding: 72px 24px; }
    .fotos-inner { grid-template-columns: 1fr; gap: 40px; }
    .foto-carousel { max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    footer { padding: 48px 24px 28px; }
  }

  @media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  /* Phone input */
  .phone-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #EDD8D0;
    border-radius: 12px;
    background: #FFFAF7;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .phone-input-wrap:focus-within {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(224,126,126,0.12);
    background: white;
  }

  .phone-prefix {
    padding: 13px 12px 13px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--wine);
    background: #FDF0F0;
    border-right: 1.5px solid #EDD8D0;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .phone-input-wrap input {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-left: 12px !important;
  }

  .phone-input-wrap input:focus {
    border: none !important;
    box-shadow: none !important;
  }

  .phone-hint {
    font-size: 0.75rem;
    margin-top: 5px;
    min-height: 16px;
    transition: color 0.2s;
  }

  .phone-hint.valid { color: #1A6B3A; }
  .phone-hint.invalid { color: #C45C5C; }

  /* Music section card */
  .music-section-card {
    background: linear-gradient(135deg, #FDF6F0, #FDF0F8);
    border: 1.5px solid #F0D8E0;
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 20px;
  }

  .music-section-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
  }

  .music-section-fa-icon {
    width: 42px;
    height: 42px;
    background: rgba(122,45,58,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wine);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .music-section-title {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
  }

  .music-section-sub {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* Fotos preview melhorado */
  .fotos-preview-wrap {
    margin-top: 14px;
    background: #FFFAF7;
    border: 1.5px solid #EDD8D0;
    border-radius: 14px;
    padding: 16px;
  }

  .fotos-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }

  .fotos-count-badge {
    background: var(--wine);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
  }

  .fotos-clear-btn {
    background: none;
    border: 1.5px solid #EDD8D0;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
  }

  .fotos-clear-btn:hover { border-color: var(--rose); color: var(--wine); }

  .fotos-add-more {
    margin-top: 14px;
    text-align: center;
  }

  .fotos-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1.5px dashed var(--rose);
    color: var(--wine);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .fotos-add-btn:hover { background: #FFF0F0; border-style: solid; }

  .foto-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--blush);
    display: block;
  }

  .foto-thumb-label {
    font-size: 0.65rem;
    color: var(--muted);
    text-align: center;
    margin-top: 3px;
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Fade-in reveal */
  .reveal { opacity: 0; transform: translateY(30px); }
  .reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
