/* Brinque Bem — Versão HTML/CSS/JS */
:root {
  --orange: #E8752A;
  --orange-dark: #d4691f;
  --green: #7EC8A4;
  --green-dark: #6bb894;
  --yellow: #F5C842;
  --yellow-dark: #B8941F;
  --ink: #1A1A1A;
  --ink-60: rgba(26,26,26,.6);
  --ink-55: rgba(26,26,26,.55);
  --ink-50: rgba(26,26,26,.5);
  --ink-45: rgba(26,26,26,.45);
  --border: rgba(0,0,0,.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, strong { font-family: 'Baloo 2', sans-serif; font-weight: 800; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.white { color: #fff; }
.white-60 { color: rgba(255,255,255,.6); }

/* BADGES */
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .85rem;
  padding: .4rem 1rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.badge-yellow { background: rgba(245,200,66,.18); color: var(--yellow-dark); }
.badge-green { background: rgba(126,200,164,.18); color: #5aa882; }
.badge-orange-outline { background: rgba(232,117,42,.18); color: var(--orange); border: 1px solid rgba(232,117,42,.3); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  cursor: pointer; border: none; transition: all .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.12); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-white { background: #fff; color: var(--orange); }
.btn-block { width: 100%; padding: 1rem; font-size: 1rem; }
.btn-nav { padding: .65rem 1.25rem; font-size: .85rem; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all .3s ease;
  background: transparent;
}
.navbar.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; gap: .25rem; align-items: center; }
.nav-links a {
  padding: .5rem 1rem; font-weight: 600; font-size: .9rem;
  color: var(--ink-60); border-radius: 999px; transition: all .2s;
}
.nav-links a:hover { color: var(--orange); background: rgba(232,117,42,.06); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }
.mobile-menu { display: none; flex-direction: column; gap: .25rem; padding: 1rem 1.25rem; background: #fff; border-top: 1px solid var(--border); }
.mobile-menu a { padding: .85rem 1rem; font-weight: 600; color: var(--ink-60); border-radius: 12px; }
.mobile-menu a:hover { color: var(--orange); background: rgba(232,117,42,.06); }
.mobile-menu.open { display: flex; }
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; }
  .navbar { background: rgba(255,255,255,.95); backdrop-filter: blur(10px); }
}

/* HERO */
.hero {
  position: relative; min-height: 100vh; padding: 6rem 0 4rem;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FFF8F0, #FFF5E8, #F0FAF5);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } .hero-image { display: none; } }
.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.05; margin: 1rem 0;
}
.hl { color: var(--orange); position: relative; display: inline-block; }
.hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 6px;
  background: var(--yellow); border-radius: 4px;
  -webkit-mask: radial-gradient(circle at 50% 100%, transparent 4px, #000 4px);
}
.hero-text p { font-size: 1.15rem; color: var(--ink-60); margin: 1.5rem 0 2rem; max-width: 520px; }
@media (max-width: 900px) { .hero-text p { margin-left: auto; margin-right: auto; } }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-ctas { justify-content: center; } }

.hero-image { position: relative; }
.hero-image-blur {
  position: absolute; inset: -1rem;
  background: linear-gradient(135deg, rgba(232,117,42,.2), rgba(245,200,66,.2), rgba(126,200,164,.2));
  border-radius: 2rem; filter: blur(40px);
}
.hero-image img {
  position: relative; border-radius: 1.5rem; box-shadow: 0 25px 50px rgba(0,0,0,.2);
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
}
.hero-badge {
  position: absolute; background: #fff; border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0,0,0,.12); padding: .85rem 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-badge-bl { bottom: -1rem; left: -1rem; }
.hero-badge-tr { top: -1rem; right: -1rem; }
.hero-badge-icon {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(126,200,164,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.hero-badge strong { display: block; font-size: .9rem; }
.hero-badge span { display: block; font-size: .75rem; color: var(--ink-50); }
.stars { color: var(--yellow); font-size: .9rem; letter-spacing: -1px; }

/* HERO DECOR — fiel à versão React */
.hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-decor > * { position: absolute; display: block; transform-origin: center; will-change: transform; }
.decor-balloon-1 { top: 6rem; left: 8%; width: 3rem; height: 4rem; opacity: .6; }
.decor-balloon-2 { top: 8rem; right: 12%; width: 2.5rem; height: 3.5rem; opacity: .5; }
.decor-balloon-3 { bottom: 8rem; left: 15%; width: 2rem; height: 3rem; opacity: .4; }
.decor-star-1 { top: 10rem; left: 25%; width: 1.5rem; height: 1.5rem; opacity: .5; }
.decor-star-2 { top: 7rem; right: 30%; width: 1.25rem; height: 1.25rem; opacity: .4; }
.decor-star-3 { bottom: 10rem; right: 20%; width: 1.75rem; height: 1.75rem; opacity: .5; }
.decor-confetti { border-radius: 3px; }
.decor-confetti-1 { top: 20%; left: 5%; width: .75rem; height: .75rem; background: rgba(232,117,42,.3); --base-rotate: 45deg; }
.decor-confetti-2 { top: 60%; right: 8%; width: 1rem; height: 1rem; background: rgba(245,200,66,.3); --base-rotate: 12deg; }
.decor-confetti-3 { bottom: 30%; left: 40%; width: .75rem; height: .75rem; background: rgba(126,200,164,.3); --base-rotate: -12deg; }
.decor-blob { border-radius: 50%; }
.decor-blob-1 { top: -5rem; right: -5rem; width: 24rem; height: 24rem; background: rgba(232,117,42,.05); }
.decor-blob-2 { bottom: -8rem; left: -8rem; width: 500px; height: 500px; background: rgba(126,200,164,.05); }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--base-rotate, 0deg)); }
  50% { transform: translateY(-20px) rotate(calc(var(--base-rotate, 0deg) + 5deg)); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(var(--base-rotate, 0deg)); }
  50% { transform: translateY(-12px) rotate(calc(var(--base-rotate, 0deg) - 3deg)); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: floatSlow 8s ease-in-out infinite; }
.animate-float-delay { animation: float 7s ease-in-out 2s infinite; }
@media (max-width: 900px) {
  .decor-balloon-2 { right: 8%; }
  .decor-star-2 { right: 22%; }
  .decor-star-3 { right: 10%; bottom: 8rem; }
  .decor-confetti-2 { right: 6%; }
}
.hero .container { position: relative; z-index: 1; }

/* Ícones Lucide (svg renderizados) */
[data-lucide] { width: 1em; height: 1em; display: inline-block; vertical-align: -.125em; }
.btn [data-lucide], .nav-links [data-lucide] { width: 1.05em; height: 1.05em; }
.card-icon [data-lucide] { width: 1.6rem; height: 1.6rem; }
.service-card .card-icon [data-lucide] { width: 1.4rem; height: 1.4rem; }
.contact-card .card-icon [data-lucide] { width: 1.2rem; height: 1.2rem; }
.footer-icon [data-lucide] { width: 1.1rem; height: 1.1rem; }
.whatsapp-float [data-lucide] { width: 1.75rem; height: 1.75rem; }
.quote-mark[data-lucide] { width: 2rem; height: 2rem; color: rgba(245,200,66,.5); }
.search-icon [data-lucide] { width: 1.25rem; height: 1.25rem; }

/* SECTIONS */
.section { padding: 5rem 0; position: relative; overflow: hidden; }
.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.section-head p { font-size: 1.1rem; color: var(--ink-60); }

/* SOBRE */
.sobre { background: linear-gradient(135deg, #FFF0E4, #FFF8F2, #E8F7F0); }
.blob { position: absolute; border-radius: 50%; }
.blob-yellow { top: -150px; right: -150px; width: 350px; height: 350px; background: rgba(245,200,66,.2); }
.blob-green { bottom: -200px; left: -200px; width: 450px; height: 450px; background: rgba(126,200,164,.2); }
.blob-orange-dark { top: 100px; left: -50px; width: 280px; height: 280px; background: rgba(232,117,42,.15); filter: blur(80px); }
.blob-green-dark { bottom: 100px; right: -50px; width: 320px; height: 320px; background: rgba(126,200,164,.15); filter: blur(80px); }

.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 1100px) and (min-width: 901px) { .grid-3 { grid-template-columns: 1fr 1fr; } }

.card {
  background: #fff; border-radius: 1.25rem; padding: 2rem;
  border: 1px solid var(--border); text-align: center;
  transition: all .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,.08); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 1rem; margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.bg-orange { background: rgba(232,117,42,.12); color: var(--orange); }
.bg-green { background: rgba(126,200,164,.15); color: var(--green); }
.bg-yellow { background: rgba(245,200,66,.18); color: var(--yellow-dark); }
.bg-whatsapp { background: rgba(37,211,102,.12); color: #25D366; }
.card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.card p { color: var(--ink-55); }

/* SERVIÇOS */
.servicos { background: linear-gradient(135deg, #1A1A1A, #2a1f1a, #1a2420); color: #fff; }
.service-card {
  background: rgba(255,255,255,.05); backdrop-filter: blur(10px);
  border-radius: 1.25rem; padding: 1.75rem;
  border: 2px solid rgba(255,255,255,.08);
  transition: all .3s ease; height: 100%;
}
.service-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.service-card.border-orange { border-color: rgba(232,117,42,.3); }
.service-card.border-green { border-color: rgba(126,200,164,.3); }
.service-card.border-yellow { border-color: rgba(245,200,66,.3); }
.service-card .card-icon { width: 56px; height: 56px; }
.service-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .75rem; }
.service-card p { color: rgba(255,255,255,.6); font-size: .9rem; }

/* GALERIA */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  position: relative; aspect-ratio: 1/1; border-radius: 1.25rem;
  overflow: hidden; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(232,117,42,.7), rgba(232,117,42,.2), transparent);
  opacity: 0; transition: opacity .3s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.search-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.9);
  color: var(--orange); display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform .3s ease;
}
.gallery-item:hover .search-icon { transform: scale(1); }
.ig-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--ink-60); transition: color .2s;
}
.ig-link:hover { color: var(--orange); }

/* DEPOIMENTOS */
.depoimentos { background: linear-gradient(135deg, rgba(245,200,66,.2), #FFF5CC, #FFF0E4); }
.testimonial-card {
  background: #fff; border-radius: 1.25rem; padding: 1.75rem;
  border: 1px solid var(--border); height: 100%;
  display: flex; flex-direction: column;
}
.quote-mark { color: rgba(245,200,66,.5); font-size: 2rem; margin-bottom: .75rem; }
.testimonial-card > p { color: var(--ink-60); flex: 1; font-size: .95rem; }
.testimonial-foot {
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: .75rem;
}
.avatar {
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(232,117,42,.1), rgba(245,200,66,.1));
  display: flex; align-items: center; justify-content: center;
}
.testimonial-foot strong { display: block; font-size: .9rem; }
.testimonial-foot span { display: block; font-size: .75rem; color: var(--ink-45); }
.testimonial-card .stars { margin-top: .75rem; font-size: 1rem; }

/* CONTATO */
.contato { background: linear-gradient(135deg, #E8F7F0, #F0FAF5, #FFF8F2); }
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form {
  background: #fff; border-radius: 1.25rem; padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.06); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group label { font-weight: 600; font-size: .85rem; margin-bottom: .4rem; display: block; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid rgba(0,0,0,.12);
  border-radius: .75rem; font-family: inherit; font-size: .95rem;
  background: #fff; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
}
.form-group textarea { resize: none; }

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: #fff; border-radius: 1.25rem; padding: 1.25rem;
  border: 1px solid var(--border); display: flex; align-items: center; gap: 1rem;
  transition: box-shadow .2s;
}
.contact-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.contact-card .card-icon { width: 48px; height: 48px; margin: 0; font-size: 1.2rem; }
.contact-card span { font-size: .85rem; color: var(--ink-50); display: block; }
.contact-card strong { display: block; }
.contact-promo {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; border-radius: 1.25rem; padding: 1.5rem; text-align: center;
}
.promo-title { font-family: 'Baloo 2'; font-weight: 800; font-size: 1.25rem; margin-bottom: .25rem; }
.contact-promo p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 1rem; }

/* FOOTER */
.footer { background: #1A1A1A; color: #fff; padding: 4rem 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 64px; margin-bottom: 1rem; }
.footer p { color: rgba(255,255,255,.5); font-size: .9rem; }
.footer h4 { font-size: 1.1rem; margin-bottom: 1rem; }
.footer h4.yellow { color: var(--yellow); }
.footer h4.green { color: var(--green); }
.footer ul li { margin-bottom: .6rem; }
.footer ul li a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color .2s; }
.footer ul li a:hover { color: var(--orange); }
.footer-social {
  display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.6);
  margin-bottom: .75rem; transition: color .2s;
}
.footer-social:hover { color: var(--orange); }
.footer-icon {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
}
.footer-social strong { display: block; font-size: .9rem; color: rgba(255,255,255,.85); font-family: 'Nunito'; font-weight: 600; }
.footer-social span { display: block; font-size: .75rem; color: rgba(255,255,255,.4); }
.footer-bottom {
  padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .85rem; }
.ballast { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.5); }
.ballast img { height: 56px; }
.ballast:hover { color: rgba(255,255,255,.8); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; box-shadow: 0 10px 25px rgba(0,0,0,.2);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20b858; }
.pulse {
  position: absolute; top: -4px; right: -4px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--orange);
  animation: pulse 1.5s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(0,0,0,.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; max-height: 85vh; }
.lightbox-inner img { max-height: 85vh; border-radius: 1rem; }
.lightbox-close {
  position: absolute; top: -12px; right: -12px;
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  border: none; cursor: pointer; font-size: 1.2rem; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
