    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Nunito', sans-serif; overflow-x: hidden; }
    :root {
      --pink: #FF6B9D; --yellow: #FFD93D; --blue: #4ECDC4;
      --purple: #A855F7; --orange: #FF8C42; --green: #6BCB77;
      --dark: #2D2D2D; --light: #FFF9F0;
    }
    html { scroll-behavior: smooth; }

    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
      border-bottom: 2px solid #FFD93D;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.7rem 2rem;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .nav-logo-img { max-height: 45px; width: auto; display: block; }
    .nav-logo-text { font-size: 1.3rem; font-weight: 900; color: var(--dark); }
    .nav-logo-text span { color: var(--pink); }
    .nav-links { display: flex; gap: 1.5rem; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--dark); font-weight: 700; font-size: 14px; transition: color 0.2s; }
    .nav-links a:hover { color: var(--pink); }
    .nav-cta { background: var(--pink); color: white; border: none; padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; text-decoration: none; transition: transform 0.2s; display: inline-block; }
    .nav-cta:hover { transform: scale(1.05); }

    .hero {
      min-height: 100vh; padding-top: 70px;
      background: linear-gradient(135deg, #FFE8F5 0%, #E8F4FF 50%, #E8FFF0 100%);
      display: flex; align-items: center; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
    }
    .hero-bg-shapes span {
      position: absolute; border-radius: 50%; opacity: 0.15;
      animation: float 6s ease-in-out infinite;
    }
    .hero-bg-shapes span:nth-child(1) { width:180px;height:180px;background:var(--pink);top:10%;left:5%;animation-delay:0s; }
    .hero-bg-shapes span:nth-child(2) { width:120px;height:120px;background:var(--yellow);top:60%;left:2%;animation-delay:1s; }
    .hero-bg-shapes span:nth-child(3) { width:200px;height:200px;background:var(--blue);top:5%;right:3%;animation-delay:2s; }
    .hero-bg-shapes span:nth-child(4) { width:100px;height:100px;background:var(--purple);bottom:10%;right:5%;animation-delay:1.5s; }
    .hero-bg-shapes span:nth-child(5) { width:80px;height:80px;background:var(--green);bottom:20%;left:15%;animation-delay:0.5s; }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

    .hero-content { position: relative; z-index: 2; padding: 2rem; max-width: 700px; }
    .hero-badge { display: inline-block; background: var(--yellow); color: var(--dark); padding: 0.4rem 1.2rem; border-radius: 50px; font-weight: 800; font-size: 13px; margin-bottom: 1rem; }
    .hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 1rem; }
    .hero h1 span { color: var(--pink); }
    .hero p { font-size: 1.1rem; color: #555; margin-bottom: 2rem; line-height: 1.6; }
    .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary { background: var(--pink); color: white; border: none; padding: 0.9rem 2rem; border-radius: 50px; font-weight: 800; font-size: 1rem; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 15px rgba(255,107,157,0.4); font-family: 'Nunito', sans-serif; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,157,0.5); }
    .btn-secondary { background: white; color: var(--dark); border: 2px solid var(--dark); padding: 0.9rem 2rem; border-radius: 50px; font-weight: 800; font-size: 1rem; cursor: pointer; text-decoration: none; transition: transform 0.2s; font-family: 'Nunito', sans-serif; display: inline-block; }
    .btn-secondary:hover { transform: translateY(-2px); }

   
    section { padding: 5rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-tag { display: inline-block; background: var(--yellow); color: var(--dark); padding: 0.3rem 1rem; border-radius: 50px; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.8rem; }
    .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--dark); margin-bottom: 1rem; }
    .section-subtitle { color: #666; font-size: 1.05rem; line-height: 1.7; max-width: 600px; }

    .sobre { background: white; }
    .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .sobre-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
    .highlight-card { background: var(--light); border-radius: 16px; padding: 1.2rem; text-align: center; border: 2px solid transparent; transition: border 0.2s; }
    .highlight-card:hover { border-color: var(--pink); }
    .highlight-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
    .highlight-card p { font-weight: 800; font-size: 14px; color: var(--dark); }
    .sobre-visual { position: relative; text-align: center; }
    .sobre-big-emoji { font-size: 12rem; text-align: center; line-height: 1; animation: float 4s ease-in-out infinite; display: block; }
    .sobre-badge { position: absolute; background: var(--yellow); border-radius: 16px; padding: 0.8rem 1.2rem; font-weight: 800; font-size: 13px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .sobre-badge-1 { top: 10%; right: 0; }
    .sobre-badge-2 { bottom: 15%; left: 0; background: var(--pink); color: white; }

    .servicos { background: var(--light); }
    .servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .servico-card { background: white; border-radius: 20px; padding: 2rem 1.5rem; text-align: center; border: 2px solid transparent; transition: all 0.3s; cursor: default; }
    .servico-card:hover { border-color: var(--pink); transform: translateY(-6px); box-shadow: 0 12px 30px rgba(255,107,157,0.15); }
    .servico-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
    .servico-card h3 { font-size: 1rem; font-weight: 900; color: var(--dark); margin-bottom: 0.5rem; }
    .servico-card p { font-size: 13px; color: #777; line-height: 1.5; }

    .cards-section { background: white; }
    .cards-grid { display: grid; grid-template-columns: repeat(2, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .card-item { background: white; border-radius: 24px; overflow: hidden; border: 2px solid transparent; box-shadow: 0 12px 30px rgba(0,0,0,0.08); transition: transform 0.3s, border-color 0.3s; display: flex; flex-direction: column; }
    .card-item:hover { transform: translateY(-6px); border-color: var(--pink); }
    .card-image { height: 280px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #FFE8F5, #E8F4FF); color: #555; font-weight: 800; font-size: 0.95rem; text-align: center; padding: 0; }
    .card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .card-item h3 { font-size: 1.15rem; font-weight: 900; color: var(--dark); margin: 1.2rem 1.5rem 0.6rem; text-align: center; }
    .card-item p { font-size: 0.95rem; color: #666; line-height: 1.6; margin: 0 1.5rem 1.5rem; }


    .depoimentos { background: var(--light); }
    .dep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .dep-card { background: white; border-radius: 20px; padding: 2rem; border: 2px solid transparent; transition: border 0.3s; }
    .dep-card:hover { border-color: var(--yellow); }
    .dep-stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 1rem; }
    .dep-text { color: #555; font-size: 15px; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
    .dep-author { display: flex; align-items: center; gap: 12px; }
    .dep-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
    .dep-name { font-weight: 800; font-size: 14px; color: var(--dark); }
    .dep-sub { font-size: 12px; color: #999; }

    .localizacao { background: white; }
    .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 3rem; }
    .loc-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .loc-item { display: flex; gap: 1rem; align-items: flex-start; }
    .loc-icon-wrap { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
    .loc-icon-wrap.pink { background: #FFE8F5; }
    .loc-icon-wrap.yellow { background: #FFF8E0; }
    .loc-icon-wrap.blue { background: #E8F4FF; }
    .loc-label { font-weight: 800; font-size: 13px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
    .loc-value { font-size: 15px; color: var(--dark); font-weight: 600; line-height: 1.5; }
    .map-container { border-radius: 20px; overflow: hidden; border: 2px solid #eee; }
    .map-container iframe { width: 100%; height: 320px; border: none; display: block; }
    .btn-map { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 800; font-size: 14px; cursor: pointer; text-decoration: none; margin-top: 1rem; transition: transform 0.2s; font-family: 'Nunito', sans-serif; }
    .btn-map:hover { transform: translateY(-2px); }

    .contato { background: linear-gradient(135deg, #FF6B9D22 0%, #FFD93D22 50%, #4ECDC422 100%); }
    .contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
    .contato-options { display: flex; flex-direction: column; gap: 1rem; }
    .contato-card { background: white; border-radius: 16px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; border: 2px solid transparent; transition: all 0.3s; text-decoration: none; }
    .contato-card:hover { border-color: var(--pink); transform: translateX(4px); }
    .contato-icon { font-size: 2rem; }
    .contato-card-label { font-size: 12px; color: #999; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
    .contato-card-value { font-size: 16px; font-weight: 800; color: var(--dark); }
    .btn-whatsapp { background: #25D366; color: white; border: none; padding: 1.2rem 2.5rem; border-radius: 50px; font-weight: 900; font-size: 1.1rem; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; box-shadow: 0 6px 20px rgba(37,211,102,0.4); width: 100%; justify-content: center; margin-top: 1rem; font-family: 'Nunito', sans-serif; }
    .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.5); }

    footer { background: var(--dark); color: white; padding: 3rem 2rem 1.5rem; text-align: center; }
    .footer-logo { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.5rem; }
    .footer-logo span { color: var(--yellow); }
    .footer-tagline { color: #aaa; font-size: 14px; margin-bottom: 2rem; }
    .footer-social { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
    .social-btn { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; text-decoration: none; transition: transform 0.2s; }
    .social-btn:hover { transform: scale(1.1); }

    

    .footer-divider { border: none; border-top: 1px solid #444; margin: 1.5rem 0; }
    .footer-copy { color: #666; font-size: 13px; }

    .whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
    .whatsapp-float a { display: flex; align-items: center; gap: 10px; background: #25D366; color: white; text-decoration: none; padding: 0.8rem 1.4rem; border-radius: 50px; font-weight: 800; font-size: 14px; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: all 0.3s; animation: pulse 2s ease-in-out infinite; font-family: 'Nunito', sans-serif; }
    .whatsapp-float a:hover { transform: scale(1.05); animation: none; }
    @keyframes pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.5)} 50%{box-shadow:0 4px 30px rgba(37,211,102,0.8)} }

    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 768px) {
      nav { padding: 0.7rem 1rem; }
      .nav-links { display: none; }
      .sobre-grid, .loc-grid, .contato-grid { grid-template-columns: 1fr; }
      .cards-grid { grid-template-columns: 1fr; }
      .galeria-item.large { grid-column: span 2; }
      .sobre-big-emoji { font-size: 7rem; }
      .sobre-highlights { grid-template-columns: 1fr 1fr; }
      section { padding: 3.5rem 1.2rem; }
      .whatsapp-float a span { display: none; }
      .whatsapp-float a { padding: 0.9rem; border-radius: 50%; }
    }


    .li-icon { vertical-align: middle; margin-right: 6px; flex-shrink: 0; }
    .pacote-list li { display: flex; align-items: flex-start; gap: 0; }
    .pacote-list li svg { margin-top: 2px; }

    /* ===== PACOTES ===== */
    .pacotes { background: var(--light); }
    .pacotes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      text-align: left;
    }
    .pacote-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      border: 2px solid transparent;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .pacote-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .pacote-destaque { border-color: var(--yellow); box-shadow: 0 8px 30px rgba(255,217,61,0.25); }
    .pacote-badge-top {
      position: absolute; top: 14px; right: 14px;
      background: var(--yellow); color: var(--dark);
      font-size: 11px; font-weight: 900; padding: 4px 12px;
      border-radius: 50px; letter-spacing: 0.5px;
    }
    .pacote-header {
      padding: 2rem 1.8rem 1.5rem;
      text-align: center;
    }
    .pacote-header-pink { background: linear-gradient(135deg, #FFE8F5, #FFC8E8); }
    .pacote-header-yellow { background: linear-gradient(135deg, #FFF8D0, #FFE878); }
    .pacote-header-blue { background: linear-gradient(135deg, #E0F7F5, #B2EEEA); }
    .pacote-emoji { font-size: 2.8rem; display: block; margin-bottom: 0.5rem; }
    .pacote-header h3 { font-size: 1.2rem; font-weight: 900; color: var(--dark); margin-bottom: 0.2rem; }
    .pacote-sub { font-size: 14px; font-weight: 700; color: #666; }
    .pacote-body { padding: 1.5rem 1.8rem 2rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
    .pacote-section-label { font-size: 12px; font-weight: 900; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.8rem; margin-bottom: 0.3rem; }
    .pacote-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .pacote-list li { font-size: 13.5px; color: #555; line-height: 1.5; padding-left: 4px; }
    .pacote-obs { font-size: 12px; color: #e07000; background: #FFF8E8; border-radius: 10px; padding: 0.6rem 0.9rem; margin-top: 0.8rem; line-height: 1.5; }
    .pacote-btn {
      display: flex; align-items: center; justify-content: center;
      margin-top: 1.2rem; padding: 0.9rem;
      border-radius: 50px; font-weight: 800; font-size: 14px;
      text-decoration: none; transition: all 0.2s;
      background: var(--pink); color: white;
      box-shadow: 0 4px 14px rgba(255,107,157,0.35);
    }
    .pacote-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,157,0.5); }
    .pacote-btn-yellow { background: #e6b800; color: var(--dark); box-shadow: 0 4px 14px rgba(255,217,61,0.4); }
    .pacote-btn-yellow:hover { box-shadow: 0 6px 20px rgba(255,217,61,0.6); }
    .pacote-btn-blue { background: var(--blue); color: white; box-shadow: 0 4px 14px rgba(78,205,196,0.35); }
    .pacote-btn-blue:hover { box-shadow: 0 6px 20px rgba(78,205,196,0.5); }

    @media (max-width: 768px) {
      .pacotes-grid { grid-template-columns: 1fr; }
      .sobre-grid, .contato-grid { grid-template-columns: 1fr; }
      .galeria-item.large { grid-column: span 2; }
      .sobre-big-emoji { font-size: 7rem; }
      .sobre-highlights { grid-template-columns: 1fr 1fr; }
      section { padding: 3.5rem 1.2rem; }
      .whatsapp-float a span { display: none; }
      .whatsapp-float a { padding: 0.9rem; border-radius: 50%; }
    }
    