:root{
      --pink:#b85b78;
      --pink-strong:#7a284f;
      --pink-soft:#f8dfe8;
      --gold:#c99a2e;
      --gold-strong:#9b6614;
      --gold-soft:#f8e7b8;
      --plum:#2b1a28;
      --wine:#5d2145;
      --teal:#2f7d73;
      --sage:#9aae77;
      --lavender:#8f7abf;
      --ivory:#fffaf2;
      --cream:#fff3e5;
      --champagne:#fff8ec;
      --dark:#2b1a28;
      --text:#604e57;
      --white:#ffffff;
      --shadow-xl:0 24px 60px rgba(91,33,69,.16);
      --shadow-lg:0 16px 40px rgba(43,26,40,.13);
      --shadow-md:0 12px 28px rgba(43,26,40,.09);
      --radius-xl:34px;
      --radius-lg:26px;
      --radius-md:20px;
      --radius-sm:14px;
      --transition:all .38s ease;
      --gradient-main:linear-gradient(135deg,var(--wine) 0%,var(--pink) 46%,var(--gold) 100%);
      --gradient-gold:linear-gradient(135deg,#a96f18 0%,#f5d889 52%,#fff4cf 100%);
      --gradient-soft:linear-gradient(180deg,#fffaf2 0%,#fff4e6 52%,#f7f1ff 100%);
      --gradient-jewel:linear-gradient(135deg,var(--wine) 0%,var(--teal) 52%,var(--gold) 100%);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:'Poppins',sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top right, rgba(201,154,46,.14), transparent 24%),
        radial-gradient(circle at bottom left, rgba(215,192,138,.12), transparent 28%),
        linear-gradient(180deg,#fffefe 0%,#fff6ed 55%,#f7f1ff 100%);
      overflow-x:hidden;
    }

    h1,h2,h3,h4,h5,h6{
      font-family:'Playfair Display',serif;
      color:var(--dark);
    }

    p{line-height:1.85}
    a{text-decoration:none}
    img{max-width:100%}

    .section-padding{padding:110px 0}
    .section-title{max-width:760px;margin:0 auto 56px;text-align:center}
    .section-title .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:9px 18px;
      border-radius:999px;
      background:rgba(201,154,46,.13);
      color:var(--pink-strong);
      font-weight:600;
      font-size:.88rem;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:18px;
      border:1px solid rgba(201,154,46,.18);
      box-shadow:0 8px 20px rgba(47,125,115,.10);
    }
    .section-title h2{font-size:clamp(2.1rem,4vw,3.5rem);margin-bottom:14px}
    .section-title p{font-size:1.03rem;margin-bottom:0}

    .btn-main,
    .btn-soft,
    .btn-outline-light-custom{
      border:none;
      border-radius:999px;
      padding:15px 30px;
      font-weight:600;
      transition:var(--transition);
      position:relative;
      overflow:hidden;
    }

    .btn-main{
      color:var(--white);
      background:linear-gradient(135deg,var(--pink-strong),var(--pink));
      box-shadow:0 16px 28px rgba(91,33,69,.24);
    }
    .btn-main:hover{
      color:var(--white);
      transform:translateY(-4px) scale(1.01);
      box-shadow:0 22px 35px rgba(201,154,46,.34);
    }

    .btn-soft{
      color:var(--dark);
      background:linear-gradient(135deg,#fff8ec,#fff3e5);
      border:1px solid rgba(201,154,46,.18);
      box-shadow:0 12px 24px rgba(58,36,49,.08);
    }
    .btn-soft:hover{
      color:var(--pink-strong);
      transform:translateY(-4px);
    }

    .btn-outline-light-custom{
      color:var(--white);
      border:1.6px solid rgba(255,255,255,.6);
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(10px);
    }
    .btn-outline-light-custom:hover{
      background:rgba(255,255,255,.16);
      color:var(--white);
      transform:translateY(-4px);
    }

    /* NAVBAR */
    .navbar{
      padding:18px 0;
      transition:var(--transition);
      z-index:999;
    }
    .navbar.scrolled{
      background:rgba(255,250,252,.86);
      backdrop-filter:blur(14px);
      box-shadow:0 16px 35px rgba(58,36,49,.10);
      padding:12px 0;
      border-bottom:1px solid rgba(47,125,115,.12);
    }
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:700;
      color:var(--dark)!important;
    }
    .navbar-brand img{
      height:58px;
      width:auto;
      object-fit:contain;
      filter:drop-shadow(0 8px 18px rgba(91,33,69,.16));
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1;
    }
    .brand-text strong{
      font-family:'Playfair Display',serif;
      font-size:1.28rem;
      color:var(--dark);
    }
    .brand-text span{
      font-size:.78rem;
      color:var(--pink-strong);
      letter-spacing:.12em;
      text-transform:uppercase;
      margin-top:5px;
    }
    .nav-link{
      color:var(--dark)!important;
      font-weight:500;
      margin-left:12px;
      position:relative;
    }
    .nav-link::after{
      content:'';
      position:absolute;
      left:8px;
      bottom:1px;
      width:0;
      height:2px;
      border-radius:999px;
      background:var(--pink);
      transition:var(--transition);
    }
    .nav-link:hover,
    .nav-link.active{color:var(--pink-strong)!important}
    .nav-link:hover::after,
    .nav-link.active::after{width:calc(100% - 16px)}
    .navbar-toggler{border:none;box-shadow:none!important}
    .navbar-toggler i{font-size:1.35rem;color:var(--pink-strong)}

    /* HERO */
    .hero{
      min-height:100vh;
      position:relative;
      display:flex;
      align-items:center;
      overflow:hidden;
      padding-top:110px;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.65), transparent 25%),
        radial-gradient(circle at 80% 25%, rgba(248,231,184,.52), transparent 30%),
        linear-gradient(135deg, rgba(255,250,252,.96) 0%, rgba(255,246,237,.98) 50%, rgba(247,241,255,.96) 100%);
    }
    .hero::before,
    .hero::after{
      content:'';
      position:absolute;
      border-radius:50%;
      filter:blur(6px);
      opacity:.55;
    }
    .hero::before{
      width:420px;height:420px;top:-120px;right:-80px;
      background:radial-gradient(circle, rgba(184,91,120,.16) 0%, rgba(184,91,120,0) 70%);
    }
    .hero::after{
      width:320px;height:320px;left:-100px;bottom:-80px;
      background:radial-gradient(circle, rgba(215,192,138,.22) 0%, rgba(215,192,138,0) 70%);
    }
    .hero-content{position:relative;z-index:2;max-width:690px}
    .hero-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 18px;
      border-radius:999px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(201,154,46,.14);
      box-shadow:0 14px 35px rgba(201,154,46,.14);
      color:var(--pink-strong);
      font-weight:600;
      margin-bottom:24px;
    }
    .hero h1{
      font-size:clamp(2.8rem,6vw,5.6rem);
      line-height:1.05;
      margin-bottom:20px;
      color:var(--dark);
    }
    .hero h1 .text-gradient{
      background:linear-gradient(135deg,var(--pink-strong),#c99a2e);
      -webkit-background-clip:text;
      background-clip:text;
      -webkit-text-fill-color:transparent;
    }
    .hero p{
      font-size:1.08rem;
      max-width:620px;
      margin-bottom:34px;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:16px;
      margin-bottom:34px;
    }
    .hero-mini-note{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--pink-strong);
      font-weight:500;
      font-size:.98rem;
    }
    .hero-cards{
      position:relative;
      z-index:2;
      display:grid;
      gap:20px;
    }
    .hero-visual-wrap{position:relative;padding:20px 0 20px 22px}
    .visual-card-main,
    .visual-card-float,
    .visual-card-badge{
      background:rgba(255,255,255,.72);
      backdrop-filter:blur(14px);
      border:1px solid rgba(255,255,255,.65);
      box-shadow:var(--shadow-xl);
    }
    .visual-card-main{
      border-radius:36px;
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .visual-card-main::before{
      content:'';
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(255,255,255,.18),transparent 40%);
      pointer-events:none;
    }
    .hero-photo{
      width:100%;
      height:620px;
      object-fit:cover;
      border-radius:28px;
      box-shadow:0 18px 45px rgba(58,36,49,.15);
    }
    .visual-card-float{
      position:absolute;
      left:-10px;
      bottom:50px;
      border-radius:24px;
      padding:18px 20px;
      max-width:240px;
      animation:floatY 4s ease-in-out infinite;
    }
    .visual-card-badge{
      position:absolute;
      top:32px;
      right:-10px;
      border-radius:22px;
      padding:16px 18px;
      min-width:220px;
      animation:floatY 5s ease-in-out infinite;
    }
    .visual-card-badge .number{
      font-size:2rem;
      font-family:'Playfair Display',serif;
      color:var(--pink-strong);
      line-height:1;
      margin-bottom:6px;
    }
    .visual-card-float h5,
    .visual-card-badge h6{margin-bottom:6px}

    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
      margin-top:14px;
      max-width:650px;
    }
    .stat-box{
      padding:20px 18px;
      border-radius:24px;
      background:rgba(255,255,255,.66);
      border:1px solid rgba(47,125,115,.12);
      box-shadow:var(--shadow-md);
      transition:var(--transition);
    }
    .stat-box:hover{transform:translateY(-5px)}
    .stat-box h3{
      color:var(--pink-strong);
      font-size:2rem;
      margin-bottom:6px;
    }
    .stat-box span{font-size:.94rem}

    /* SECTIONS */
    .luxury-card,
    .product-card,
    .testimonial-card,
    .contact-card,
    .about-text-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(47,125,115,.12);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-md);
      transition:var(--transition);
      height:100%;
      backdrop-filter:blur(10px);
    }
    .luxury-card:hover,
    .product-card:hover,
    .testimonial-card:hover,
    .contact-card:hover,
    .about-text-card:hover{
      transform:translateY(-8px);
      box-shadow:var(--shadow-lg);
    }

    .luxury-card{
      padding:34px 26px;
      text-align:center;
      position:relative;
      overflow:hidden;
    }
    .luxury-card::before{
      content:'';
      position:absolute;
      left:0;top:0;right:0;
      height:5px;
      background:linear-gradient(90deg,var(--pink),var(--gold));
    }
    .luxury-icon{
      width:78px;
      height:78px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:1.7rem;
      color:var(--pink-strong);
      background:linear-gradient(145deg,#fff8ec,var(--pink-soft));
      box-shadow:0 12px 24px rgba(201,154,46,.20);
      margin-bottom:20px;
    }

    .products-section{
      background:
        radial-gradient(circle at left center, rgba(47,125,115,.10), transparent 20%),
        linear-gradient(180deg,#fffaf2 0%,#f8f1ff 100%);
    }
    .product-card{overflow:hidden;position:relative}
    .product-card .image-wrap{position:relative;overflow:hidden}
    .product-card img{
      width:100%;
      height:290px;
      object-fit:cover;
      transition:transform .8s ease;
    }
    .product-card:hover img{transform:scale(1.08)}
    .product-card .image-wrap::after{
      content:'';
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,transparent 55%, rgba(58,36,49,.18) 100%);
      pointer-events:none;
    }
    .product-badge{
      position:absolute;
      top:16px;
      left:16px;
      z-index:2;
      background:rgba(255,255,255,.88);
      color:var(--pink-strong);
      border:1px solid rgba(201,154,46,.18);
      padding:8px 14px;
      border-radius:999px;
      font-size:.8rem;
      font-weight:700;
      box-shadow:0 10px 24px rgba(58,36,49,.08);
    }
    .product-card .card-body{padding:24px 24px 26px}
    .product-topline{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .product-topline h4{margin:0;font-size:1.55rem}
    .price-tag{
      white-space:nowrap;
      color:var(--pink-strong);
      font-weight:700;
      font-size:1.06rem;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(47,125,115,.12);
    }
    .product-meta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:14px;
      font-size:.9rem;
      color:#826570;
    }
    .product-meta span{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff8ec;
      border:1px solid rgba(47,125,115,.10);
    }

    .about-section{position:relative}
    .about-visual{position:relative}
    .about-main-img{
      width:100%;
      height:620px;
      object-fit:cover;
      border-radius:34px;
      box-shadow:var(--shadow-xl);
    }
    .about-frame{
      position:absolute;
      inset:20px;
      border:1.5px solid rgba(255,255,255,.5);
      border-radius:28px;
      pointer-events:none;
    }
    .about-badge{
      position:absolute;
      right:-10px;
      bottom:34px;
      background:rgba(255,255,255,.78);
      backdrop-filter:blur(12px);
      border-radius:24px;
      padding:20px 22px;
      box-shadow:var(--shadow-lg);
      max-width:280px;
      border-left:4px solid var(--pink);
    }
    .about-text-card{padding:38px 34px}
    .about-list{list-style:none;padding:0;margin:26px 0 0}
    .about-list li{display:flex;gap:14px;margin-bottom:18px}
    .about-list i{
      width:34px;height:34px;border-radius:50%;
      display:inline-flex;align-items:center;justify-content:center;
      background:rgba(201,154,46,.14);color:var(--pink-strong);flex-shrink:0;margin-top:2px;
    }

    .testimonials-section{
      background:
        radial-gradient(circle at right top, rgba(215,192,138,.12), transparent 24%),
        linear-gradient(180deg,#fffdfd 0%,#fff4e7 100%);
    }
    .testimonial-card{padding:30px;position:relative}
    .testimonial-card::before{
      content:'';
      position:absolute;
      top:0;left:0;right:0;
      height:4px;
      border-radius:26px 26px 0 0;
      background:linear-gradient(90deg,var(--pink),var(--gold));
    }
    .quote-icon{font-size:2.2rem;color:rgba(201,154,46,.34);margin-bottom:14px}
    .stars{color:#f0b84d;margin-bottom:10px}
    .client-info{display:flex;align-items:center;gap:14px;margin-top:18px}
    .client-info img{
      width:58px;height:58px;border-radius:50%;object-fit:cover;
      border:3px solid rgba(201,154,46,.18);
    }

    .cta-box{
      border-radius:34px;
      padding:50px 38px;
      background:
        radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 22%),
        linear-gradient(135deg,#5d2145 0%,#b85b78 50%,#f5d889 100%);
      box-shadow:var(--shadow-xl);
      position:relative;
      overflow:hidden;
    }
    .cta-box::before,
    .cta-box::after{
      content:'';
      position:absolute;
      border-radius:50%;
      background:rgba(255,255,255,.12);
    }
    .cta-box::before{width:260px;height:260px;top:-110px;right:-80px}
    .cta-box::after{width:180px;height:180px;bottom:-70px;left:-30px}
    .cta-box h3,.cta-box p{color:#fff;position:relative;z-index:1}

    .contact-card{padding:34px}
    .contact-item{display:flex;gap:16px;align-items:flex-start;margin-bottom:22px}
    .contact-item i{
      width:50px;height:50px;border-radius:50%;
      display:inline-flex;align-items:center;justify-content:center;
      color:var(--pink-strong);
      background:linear-gradient(145deg,#fff4e7,#f8e7b8);
      box-shadow:0 12px 20px rgba(201,154,46,.18);
      flex-shrink:0;
    }
    .social-links{display:flex;gap:12px;flex-wrap:wrap}
    .social-links a{
      width:48px;height:48px;border-radius:50%;
      display:inline-flex;align-items:center;justify-content:center;
      color:var(--pink-strong);
      background:#fff8ec;
      border:1px solid rgba(201,154,46,.14);
      box-shadow:0 10px 18px rgba(58,36,49,.07);
      transition:var(--transition);
    }
    .social-links a:hover{
      color:#fff;
      background:linear-gradient(135deg,var(--pink-strong),var(--pink));
      transform:translateY(-5px);
    }

    footer{
      padding:30px 0;
      background:#24161f;
      color:rgba(255,255,255,.82);
    }
    footer p, footer a{color:rgba(255,255,255,.82);margin:0}

    /* WHATSAPP FLOAT */
    .whatsapp-float{
      position:fixed;
      right:22px;
      bottom:22px;
      width:68px;
      height:68px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:1.8rem;
      background:linear-gradient(135deg,var(--pink-strong),#2f7d73);
      box-shadow:0 16px 35px rgba(47,125,115,.35);
      z-index:1000;
      animation:pulseWhats 1.8s infinite;
    }
    .whatsapp-float:hover{
      color:#fff;
      transform:scale(1.06);
    }


    /* PALETA PREMIUM - champagne, dourado, vinho, lavanda e esmeralda */
    body{
      background:
        radial-gradient(circle at 6% 12%, rgba(248,231,184,.55), transparent 26%),
        radial-gradient(circle at 96% 4%, rgba(143,122,191,.18), transparent 24%),
        radial-gradient(circle at 86% 76%, rgba(47,125,115,.14), transparent 24%),
        linear-gradient(180deg,#fffaf2 0%,#fff7ed 48%,#f8f1ff 100%);
    }

    .navbar.scrolled{
      background:rgba(255,250,242,.9);
      border-bottom:1px solid rgba(201,154,46,.16);
    }
    .brand-text span,
    .nav-link:hover,
    .nav-link.active,
    .navbar-toggler i,
    .hero-mini-note,
    .stat-box h3,
    .price-tag,
    .contact-card a{color:var(--wine)!important}
    .nav-link::after{background:linear-gradient(90deg,var(--gold),var(--teal))}
    .navbar-brand img{filter:drop-shadow(0 10px 18px rgba(201,154,46,.22))}

    .section-title .eyebrow,
    .hero-pill{
      color:var(--wine);
      background:linear-gradient(135deg,rgba(255,248,236,.95),rgba(248,231,184,.58));
      border:1px solid rgba(201,154,46,.25);
      box-shadow:0 10px 24px rgba(201,154,46,.13);
    }
    .section-title .eyebrow i,
    .hero-pill i{color:var(--gold-strong)}

    .btn-main{
      color:#fff;
      background:linear-gradient(135deg,var(--wine) 0%,var(--pink) 52%,var(--gold) 100%);
      box-shadow:0 16px 30px rgba(91,33,69,.24),0 8px 18px rgba(201,154,46,.16);
    }
    .btn-main:hover{
      box-shadow:0 22px 42px rgba(91,33,69,.28),0 10px 24px rgba(201,154,46,.22);
    }
    .btn-soft{
      color:var(--wine);
      background:linear-gradient(135deg,#fffaf2,#f7ebc7);
      border:1px solid rgba(201,154,46,.26);
    }
    .btn-soft:hover{color:var(--gold-strong)}

    .hero{
      background:
        radial-gradient(circle at 14% 18%, rgba(255,255,255,.8), transparent 24%),
        radial-gradient(circle at 76% 20%, rgba(248,231,184,.68), transparent 30%),
        radial-gradient(circle at 92% 82%, rgba(47,125,115,.12), transparent 24%),
        linear-gradient(135deg,#fffaf2 0%,#fff3e5 45%,#f6efff 100%);
    }
    .hero::before{background:radial-gradient(circle,rgba(201,154,46,.28) 0%,rgba(201,154,46,0) 70%)}
    .hero::after{background:radial-gradient(circle,rgba(143,122,191,.22) 0%,rgba(143,122,191,0) 70%)}
    .hero h1 .text-gradient{
      background:linear-gradient(135deg,var(--wine) 0%,var(--gold) 55%,var(--teal) 100%);
      -webkit-background-clip:text;
      background-clip:text;
      -webkit-text-fill-color:transparent;
    }
    .visual-card-main,
    .visual-card-float,
    .visual-card-badge{
      border:1px solid rgba(201,154,46,.18);
      background:rgba(255,250,242,.76);
    }
    .visual-card-main::before{
      background:linear-gradient(145deg,rgba(255,255,255,.34),rgba(248,231,184,.16),transparent 54%);
    }
    .visual-card-badge .number{color:var(--gold-strong)}

    .luxury-card,
    .product-card,
    .testimonial-card,
    .contact-card,
    .about-text-card,
    .stat-box{
      background:rgba(255,250,242,.82);
      border:1px solid rgba(201,154,46,.14);
    }
    .stat-box:nth-child(1){border-top:4px solid var(--gold)}
    .stat-box:nth-child(2){border-top:4px solid var(--teal)}
    .stat-box:nth-child(3){border-top:4px solid var(--lavender)}

    #diferenciais .col-md-6:nth-child(1) .luxury-card::before,
    .product-card:nth-child(1)::before{background:linear-gradient(90deg,var(--wine),var(--gold))}
    #diferenciais .col-md-6:nth-child(2) .luxury-card::before{background:linear-gradient(90deg,var(--teal),var(--gold))}
    #diferenciais .col-md-6:nth-child(3) .luxury-card::before{background:linear-gradient(90deg,var(--lavender),var(--pink))}
    #diferenciais .col-md-6:nth-child(4) .luxury-card::before{background:linear-gradient(90deg,var(--gold),var(--wine))}
    #diferenciais .col-md-6:nth-child(1) .luxury-icon{color:var(--wine);background:linear-gradient(145deg,#fff4e7,#f8dfe8)}
    #diferenciais .col-md-6:nth-child(2) .luxury-icon{color:var(--teal);background:linear-gradient(145deg,#f0fbf8,#dceee9)}
    #diferenciais .col-md-6:nth-child(3) .luxury-icon{color:var(--lavender);background:linear-gradient(145deg,#fbf8ff,#ebe2ff)}
    #diferenciais .col-md-6:nth-child(4) .luxury-icon{color:var(--gold-strong);background:linear-gradient(145deg,#fff8dc,#f8e7b8)}

    .products-section{
      background:
        radial-gradient(circle at left center, rgba(47,125,115,.10), transparent 22%),
        radial-gradient(circle at right center, rgba(201,154,46,.13), transparent 26%),
        linear-gradient(180deg,#fffaf2 0%,#fff7ed 54%,#f8f1ff 100%);
    }
    .product-badge{
      color:var(--wine);
      background:linear-gradient(135deg,rgba(255,250,242,.94),rgba(248,231,184,.84));
      border:1px solid rgba(201,154,46,.24);
    }
    .price-tag{
      background:rgba(248,231,184,.52);
      border:1px solid rgba(201,154,46,.18);
    }
    .product-meta span{
      background:#fffaf2;
      border:1px solid rgba(47,125,115,.10);
    }
    #produtos .col-md-6:nth-child(2) .product-badge{color:var(--teal)}
    #produtos .col-md-6:nth-child(3) .product-badge{color:var(--gold-strong)}
    #produtos .col-md-6:nth-child(4) .product-badge{color:var(--lavender)}
    #produtos .col-md-6:nth-child(5) .product-badge{color:#b06b18}
    #produtos .col-md-6:nth-child(6) .product-badge{color:var(--wine)}

    .about-badge{border-left:4px solid var(--gold)}
    .about-list i{
      color:var(--teal);
      background:rgba(47,125,115,.11);
    }
    .testimonials-section{
      background:
        radial-gradient(circle at right top, rgba(201,154,46,.16), transparent 25%),
        radial-gradient(circle at left bottom, rgba(143,122,191,.14), transparent 23%),
        linear-gradient(180deg,#fffdf8 0%,#fff5ea 58%,#f8f1ff 100%);
    }
    .testimonial-card::before{background:linear-gradient(90deg,var(--gold),var(--teal),var(--lavender))}
    .quote-icon{color:rgba(201,154,46,.42)}
    .stars{color:#d7a83e}
    .client-info img{border:3px solid rgba(201,154,46,.22)}

    .cta-box{
      background:
        radial-gradient(circle at 82% 10%, rgba(255,255,255,.18), transparent 22%),
        radial-gradient(circle at 12% 86%, rgba(248,231,184,.28), transparent 26%),
        linear-gradient(135deg,var(--plum) 0%,var(--wine) 38%,var(--teal) 72%,var(--gold) 100%);
      box-shadow:0 26px 58px rgba(43,26,40,.22),0 16px 36px rgba(201,154,46,.18);
    }
    .contact-item i{
      color:var(--wine);
      background:linear-gradient(145deg,#fff8ec,#f8e7b8);
      box-shadow:0 12px 22px rgba(201,154,46,.14);
    }
    .contact-item:nth-child(2) i{color:var(--teal);background:linear-gradient(145deg,#f0fbf8,#dceee9)}
    .social-links a{
      color:var(--wine);
      background:#fffaf2;
      border:1px solid rgba(201,154,46,.18);
    }
    .social-links a:hover{
      color:#fff;
      background:linear-gradient(135deg,var(--wine),var(--teal),var(--gold));
    }
    footer{background:linear-gradient(135deg,#21151f 0%,#382033 58%,#5f4319 100%)}
    .whatsapp-float{
      background:linear-gradient(135deg,#25d366,var(--teal));
      box-shadow:0 16px 35px rgba(47,125,115,.35);
    }

    /* REVEAL */
    .reveal{opacity:0;transform:translateY(40px);transition:opacity .9s ease, transform .9s ease}
    .reveal.active{opacity:1;transform:translateY(0)}

    @keyframes pulseWhats{
      0%{box-shadow:0 0 0 0 rgba(47,125,115,.45),0 16px 35px rgba(47,125,115,.35)}
      70%{box-shadow:0 0 0 18px rgba(184,91,120,0),0 16px 35px rgba(47,125,115,.35)}
      100%{box-shadow:0 0 0 0 rgba(184,91,120,0),0 16px 35px rgba(47,125,115,.35)}
    }
    @keyframes floatY{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-10px)}
    }

    @media (max-width: 1199.98px){
      .hero-photo{height:560px}
      .about-main-img{height:560px}
    }

    @media (max-width: 991.98px){
      .section-padding{padding:90px 0}
      .navbar-collapse{
        background:rgba(255,250,252,.94);
        backdrop-filter:blur(12px);
        margin-top:14px;
        border-radius:22px;
        padding:16px;
        box-shadow:0 16px 35px rgba(58,36,49,.10);
      }
      .hero{padding-top:140px;padding-bottom:80px;min-height:auto}
      .hero-visual-wrap{padding-left:0;margin-top:24px}
      .visual-card-float,
      .visual-card-badge{position:static;margin-top:16px;max-width:100%}
      .hero-stats{grid-template-columns:1fr}
      .about-badge{position:static;margin-top:18px;max-width:100%}
    }

    @media (max-width: 767.98px){
      .section-padding{padding:80px 0}
      .navbar-brand img{height:50px}
      .brand-text strong{font-size:1.05rem}
      .hero h1{font-size:2.65rem}
      .hero-actions{flex-direction:column;align-items:stretch}
      .hero-actions a{width:100%;text-align:center}
      .hero-photo{height:420px}
      .about-main-img{height:420px}
      .product-card img{height:240px}
      .product-topline{flex-direction:column}
      .cta-box{text-align:center;padding:42px 24px}
      .whatsapp-float{width:62px;height:62px;font-size:1.6rem;right:16px;bottom:16px}
    }


/* Dynamic project additions */
:root{
  --brand-primary:#b85b78;
  --brand-secondary:#c99a2e;
}
body{background-attachment:fixed;}
.navbar-brand img{max-width:72px;}
.page-hero{padding:150px 0 80px;background:linear-gradient(135deg,rgba(255,250,252,.97),rgba(255,243,229,.98));position:relative;overflow:hidden;}
.page-hero::after{content:"";position:absolute;right:-120px;top:-120px;width:360px;height:360px;border-radius:50%;background:rgba(184,91,120,.12);}
.page-hero .container{position:relative;z-index:2;}
.breadcrumb-soft{display:inline-flex;gap:8px;align-items:center;background:rgba(255,255,255,.7);border:1px solid rgba(201,154,46,.2);padding:8px 16px;border-radius:999px;color:var(--pink-strong);font-weight:600;}
.hero-photo,.product-card .image-wrap img,.gallery-card img,.banner-thumb{object-fit:cover;}
.hero-visual-wrap{min-height:560px;}
.visual-card-main{overflow:hidden;}
.hero-photo{width:100%;height:620px;}
.product-card .image-wrap{height:310px;background:#fff6ed;}
.product-card .image-wrap img{width:100%;height:100%;transition:transform .6s ease;}
.product-card:hover .image-wrap img{transform:scale(1.06);}
.product-description{min-height:80px;}
.filter-pills{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-bottom:36px;}
.filter-pills a{padding:10px 18px;border-radius:999px;background:#fff;border:1px solid rgba(184,91,120,.16);color:var(--dark);font-weight:600;box-shadow:var(--shadow-md);}
.filter-pills a.active,.filter-pills a:hover{background:linear-gradient(135deg,var(--pink-strong),var(--pink));color:#fff;}
.gallery-card{border:0;border-radius:28px;overflow:hidden;box-shadow:var(--shadow-lg);background:#fff;height:100%;}
.gallery-card .gallery-img-wrap{height:330px;overflow:hidden;background:#fff5f8;}
.gallery-card img{width:100%;height:100%;transition:transform .6s ease;}
.gallery-card:hover img{transform:scale(1.07);}
.contact-form-card{background:#fff;border-radius:34px;padding:34px;box-shadow:var(--shadow-xl);border:1px solid rgba(201,154,46,.14);}
.form-control,.form-select{border-radius:16px;border:1px solid rgba(91,33,69,.14);padding:13px 15px;}
.form-control:focus,.form-select:focus{border-color:var(--pink);box-shadow:0 0 0 .25rem rgba(184,91,120,.13);}
.catalog-page-card{background:#fff;border:0;border-radius:26px;overflow:hidden;box-shadow:var(--shadow-lg);}
.catalog-page-card img{width:100%;height:auto;display:block;}
.badge-soft{background:rgba(184,91,120,.12);color:var(--pink-strong);border-radius:999px;padding:7px 12px;font-weight:700;}
.alert-soft{border:0;border-radius:22px;padding:18px 20px;background:rgba(184,91,120,.11);color:var(--pink-strong);}
.whatsapp-float{z-index:1050;}
footer{background:#2b1a28;color:rgba(255,255,255,.75);padding:34px 0;}
footer a{color:#fff;}
.logo-footer{height:54px;filter:drop-shadow(0 10px 18px rgba(0,0,0,.18));}
@media(max-width:991px){.hero{padding-top:130px}.hero-photo{height:420px}.hero-visual-wrap{min-height:440px}.navbar-collapse{background:rgba(255,250,252,.96);padding:18px;border-radius:24px;box-shadow:var(--shadow-lg);margin-top:14px}.product-card .image-wrap{height:260px}}
@media(max-width:575px){.section-padding{padding:72px 0}.page-hero{padding:130px 0 58px}.contact-form-card{padding:24px}.hero-actions .btn{width:100%;margin-bottom:10px}.gallery-card .gallery-img-wrap{height:260px}}


/* ===== Ajustes visuais finais - versão HostGator ===== */
.site-footer{
  position:relative;
  padding:38px 0;
  color:#4e2b3e;
  background:linear-gradient(135deg,#fff8f5 0%,#fff3eb 52%,#f7ecd0 100%);
  border-top:1px solid rgba(201,154,46,.24);
  box-shadow:0 -16px 40px rgba(91,33,69,.05);
}
.site-footer::before{
  content:'';
  position:absolute;
  left:0;right:0;top:0;
  height:4px;
  background:linear-gradient(90deg,var(--wine),var(--gold),var(--pink),var(--gold));
}
.footer-logo-badge{
  width:104px;
  height:104px;
  border-radius:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(145deg,#ffffff,#fff7ee);
  border:1px solid rgba(201,154,46,.24);
  box-shadow:0 16px 30px rgba(91,33,69,.08), inset 0 1px 0 rgba(255,255,255,.85);
  flex-shrink:0;
}
.logo-footer{
  width:84px;
  height:auto;
  max-height:72px;
  object-fit:contain;
  filter:drop-shadow(0 8px 12px rgba(184,91,120,.14));
}
.footer-title{
  color:var(--wine);
  font-family:'Playfair Display',serif;
  font-size:1.8rem;
}
.footer-tagline,
.footer-contact-list p,
.footer-bottom small{
  color:rgba(78,43,62,.88);
}
.footer-contact-list a,
.footer-bottom a{
  color:var(--wine);
  text-decoration:none;
}
.footer-contact-list a:hover{color:var(--gold-strong)}
.footer-contact-list i{
  color:var(--gold-strong);
}
.footer-divider{
  border-color:rgba(91,33,69,.12);
  opacity:1;
}
.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  width:72px;
  height:72px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  color:#5b2145 !important;
  background:linear-gradient(135deg,#ffe39f 0%,#f1c24d 45%,#c99a2e 100%) !important;
  border:2px solid rgba(255,255,255,.75);
  box-shadow:0 0 0 0 rgba(201,154,46,.48),0 18px 34px rgba(201,154,46,.35);
  animation:pulseGold 1.7s infinite;
}
.whatsapp-float:hover{
  transform:translateY(-3px) scale(1.05);
  color:#5b2145 !important;
}
@keyframes pulseGold{
  0%{box-shadow:0 0 0 0 rgba(201,154,46,.45),0 18px 34px rgba(201,154,46,.35)}
  70%{box-shadow:0 0 0 18px rgba(201,154,46,0),0 18px 34px rgba(201,154,46,.35)}
  100%{box-shadow:0 0 0 0 rgba(201,154,46,0),0 18px 34px rgba(201,154,46,.35)}
}
@media(max-width:767.98px){
  .footer-brand{align-items:flex-start !important;}
  .footer-logo-badge{width:88px;height:88px;border-radius:22px;}
  .logo-footer{width:72px;max-height:60px;}
  .footer-title{font-size:1.45rem;}
  .whatsapp-float{width:66px;height:66px;font-size:1.7rem;right:16px;bottom:16px;}
}
