@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --yellow:#F3E600;
  --black:#0b0b0b;
  --dark:#101010;
  --gray-text:#5a5a5a;
  --gray-border:#e2e2e2;
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:10px;
  --container:1240px;
  --font-head:'Poppins',sans-serif;
  --font-body:'Inter',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--black);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{font-family:var(--font-head);margin:0;line-height:1.15;}
p{margin:0;}
button{font-family:inherit;cursor:pointer;}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
.icon{width:22px;height:22px;flex-shrink:0;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;justify-content:center;
  padding:14px 26px;border-radius:999px;border:none;font-weight:600;font-size:15px;
  white-space:nowrap;transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{transform:translateY(-1px);}
.btn-yellow{background:var(--yellow);color:var(--black);}
.btn-black{background:var(--black);color:#fff;}
.btn-black .icon{background:var(--yellow);border-radius:50%;padding:5px;width:30px;height:30px;color:var(--black);}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;left:0;right:0;z-index:40;background:#fff;}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;}
.logo img{height:48px;width:auto;}
.header-actions{display:flex;align-items:center;gap:14px;}
.btn-cta{padding:12px 22px;font-size:14px;}
.hamburger{
  background:var(--yellow);border:none;width:46px;height:46px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
}
.hamburger .icon{width:22px;height:22px;}

.nav-modal-box{max-width:420px;}
.nav-card{display:flex;flex-direction:column;padding:36px;}
.nav-card-logo{align-self:flex-start;margin-bottom:28px;}
.nav-card-logo img{height:32px;width:auto;}
.nav-card-links{display:flex;flex-direction:column;}
.nav-card-links a{
  display:block;padding:16px 4px;font-family:var(--font-head);font-size:24px;font-weight:600;color:var(--black);
  border-bottom:1px solid var(--gray-border);
}
.nav-card-links li:last-child a{border-bottom:none;}
.nav-card-links a.active,.nav-card-links a:hover{color:#b8ad00;}

/* ---------- Hero / Slider (home) ---------- */
.hero-slider{position:relative;overflow:hidden;}
.hero-slide{
  position:relative;min-height:640px;background-size:cover;background-position:center;
  display:none;
}
.hero-slide.is-active{display:block;}
.hero-slide::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(100deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.4) 35%, rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 70%);
}
.hero-slide-container{position:relative;z-index:2;padding-top:80px;padding-bottom:120px;box-sizing:border-box;}
.hero-slide-inner{max-width:560px;color:#fff;}
.hero-slide h2{font-size:36px;font-weight:700;margin-bottom:20px;}
.hero-slide p{font-size:15px;line-height:1.7;opacity:.92;max-width:420px;margin-bottom:32px;}
.hero-slide-cta{
  width:44px;height:44px;border-radius:50%;background:var(--yellow);
  display:flex;align-items:center;justify-content:center;border:none;
}
.hero-dots-container{position:absolute;inset:0;z-index:6;pointer-events:none;}
.hero-dots{position:absolute;right:max(24px, calc((100% - var(--container)) / 2 + 24px));bottom:90px;display:flex;gap:10px;pointer-events:auto;}
.hero-dots button{width:36px;height:10px;border-radius:6px;border:2px solid var(--yellow);background:transparent;padding:0;cursor:pointer;}
.hero-dots button.is-active{background:var(--yellow);width:48px;}

/* Badges row */
.badges{margin:-70px 0 0;position:relative;z-index:5;}
.badges .container{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.badge-card{
  background:#fff;border-radius:var(--radius-md);padding:26px 28px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);display:flex;flex-direction:column;gap:16px;
  min-height:120px;justify-content:center;
}
.badge-top{display:flex;align-items:center;justify-content:space-between;}
.badge-icon{
  width:44px;height:44px;border-radius:50%;background:#f2f2f2;display:flex;align-items:center;justify-content:center;
}
.badge-nav{color:#bbb;}
.badge-card img.badge-logo{height:26px;width:auto;}
.badge-cert-carousel{position:relative;height:26px;flex:1;overflow:hidden;}
.badge-cert-logo{
  position:absolute;left:0;top:0;height:26px;width:auto;max-width:180px;object-fit:contain;object-position:left center;
  opacity:0;transition:opacity .4s ease;
}
.badge-cert-logo.is-active{opacity:1;}
.badge-card p{font-weight:600;font-size:16px;}

/* ---------- Services (yellow) ---------- */
.services{background:var(--yellow);padding:150px 0 70px;margin-top:-70px;}
.services-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:44px;flex-wrap:wrap;}
.services-head h2{font-size:34px;font-weight:700;margin-bottom:12px;}
.services-head p{max-width:600px;font-size:15px;line-height:1.6;}
.arrow-nav{display:flex;gap:10px;}
.arrow-nav button{
  width:44px;height:44px;border-radius:50%;border:1px solid rgba(0,0,0,.25);background:transparent;
  display:flex;align-items:center;justify-content:center;
}
.services-grid{
  display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  padding-bottom:6px;-ms-overflow-style:none;scrollbar-width:none;
}
.services-grid::-webkit-scrollbar{display:none;}
.service-card{
  position:relative;border-radius:var(--radius-md);overflow:hidden;
  background-size:cover;background-position:center;display:flex;align-items:flex-end;
  flex:0 0 270px;height:360px;scroll-snap-align:start;
}
.service-card::after{
  content:'';position:absolute;inset:0;background:linear-gradient(to bottom, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%);
}
.service-card-inner{position:relative;z-index:2;padding:22px;display:flex;align-items:flex-end;justify-content:space-between;gap:10px;width:100%;color:#fff;}
.service-card-inner h3{font-size:19px;font-weight:600;}
.service-card-icon{
  position:absolute;top:20px;left:20px;z-index:2;color:#fff;width:30px;height:30px;
}
.service-card-badge{
  width:30px;height:30px;border-radius:50%;background:var(--yellow);color:var(--black);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.service-card-badge .icon{width:16px;height:16px;}

/* ---------- Diferenciais ---------- */
.diferenciais{padding:110px 0;}
.diferenciais .container{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.dif-kicker{color:#9a9a9a;font-size:14px;margin-bottom:14px;}
.diferenciais h2{font-size:38px;font-weight:700;margin-bottom:40px;}
.dif-item{position:relative;display:flex;gap:20px;padding:22px 0;}
.dif-item::before{
  content:'';position:absolute;left:22px;top:0;bottom:0;width:2px;background:var(--gray-border);
}
.dif-item:first-child::before{top:45px;}
.dif-item:last-child::before{bottom:auto;height:45px;}
.dif-num{
  position:relative;width:46px;height:46px;border-radius:50%;background:var(--yellow);font-family:var(--font-head);font-weight:700;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:15px;
}
.dif-item h3{font-size:18px;font-weight:700;margin-bottom:8px;}
.dif-item p{font-size:14px;color:var(--gray-text);line-height:1.6;}
.dif-image img{border-radius:var(--radius-lg);width:100%;height:auto;object-fit:cover;}

/* ---------- Partners ---------- */
.partners{padding:0 0 90px;}
.partners-heading{color:#9a9a9a;font-size:14px;margin-bottom:34px;}
.partners-marquee{
  overflow:hidden;width:100%;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.partners-track{
  display:flex;align-items:center;gap:60px;width:max-content;
  animation:partners-scroll 26s linear infinite;
}
.partners-marquee:hover .partners-track{animation-play-state:paused;}
.partners-track img{max-height:56px;width:auto;flex-shrink:0;filter:grayscale(1);opacity:.6;}
.partner-chip{background:var(--black);border-radius:10px;padding:12px 20px;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;}
.partner-chip img{max-height:30px;filter:grayscale(1);opacity:.9;}

@keyframes partners-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* ---------- CTA urgente ---------- */
.cta-urgente{padding:0 0 90px;}
.cta-urgente-box{
  background:var(--yellow);border-radius:var(--radius-lg);padding:46px 50px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
}
.cta-urgente-box p{font-size:22px;font-weight:500;line-height:1.5;max-width:640px;}

/* ---------- Testimonials ---------- */
.testimonials{padding:0 0 100px;}
.testimonials-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:44px;flex-wrap:wrap;}
.testimonials-head h2{font-size:32px;font-weight:700;max-width:560px;}
.testimonials-grid{
  display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  padding-bottom:6px;-ms-overflow-style:none;scrollbar-width:none;
}
.testimonials-grid::-webkit-scrollbar{display:none;}
.testimonial-card{background:#f4f4f4;border-radius:var(--radius-md);padding:22px;position:relative;flex:0 0 270px;scroll-snap-align:start;}
.testimonial-avatar-wrap{position:relative;width:64px;height:64px;margin-bottom:16px;}
.testimonial-avatar-wrap img{width:64px;height:64px;border-radius:14px;object-fit:cover;}
.testimonial-quote{
  position:absolute;top:-10px;left:38px;background:var(--black);color:var(--yellow);
  width:34px;height:28px;border-radius:8px 8px 8px 0;display:flex;align-items:center;justify-content:center;font-size:18px;
}
.testimonial-card p{font-size:13.5px;color:var(--gray-text);line-height:1.6;margin-bottom:14px;}
.testimonial-card strong{font-size:14px;}

/* ---------- Footer ---------- */
.site-footer{padding:0 0 30px;}
.footer-card{background:var(--black);color:#fff;border-radius:var(--radius-lg);padding:50px;}
.footer-top{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.1fr;gap:30px;}
.footer-brand{display:flex;flex-direction:column;align-items:flex-start;}
.footer-brand .footer-logo{height:78px;width:auto;background:#fff;border-radius:16px;padding:20px 26px;margin-bottom:22px;}
.footer-pdf{display:flex;align-items:center;gap:12px;}
.footer-pdf-icon{
  flex-shrink:0;width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
}
.footer-pdf-icon .icon{width:17px;height:17px;color:#ddd;}
.footer-pdf-text{font-size:14px;line-height:1.45;color:#ddd;}
.footer-pdf a{color:#fff;text-decoration:underline;font-weight:600;}
.footer-pdf-pending{color:#8a8a8a;font-style:italic;text-decoration:none;}
.footer-col h4{font-size:29px;font-weight:700;margin-bottom:20px;}
.footer-col ul{display:flex;flex-direction:column;gap:12px;font-size:17px;color:#ddd;}
.footer-col p{margin-bottom:10px;font-size:17px;color:#ddd;}
.footer-social{display:flex;gap:10px;margin-top:16px;}
.footer-social a{width:34px;height:34px;border-radius:8px;background:#fff;color:#000;display:flex;align-items:center;justify-content:center;}
.footer-map{position:relative;border-radius:var(--radius-md);overflow:hidden;display:block;}
.footer-map img{border-radius:var(--radius-md) var(--radius-md) 0 0;}
.footer-map span{display:block;text-align:center;color:#cfcfcf;font-size:12.5px;background:transparent;padding:8px 4px 0;}
.footer-bottom{display:grid;grid-template-columns:1fr 1fr 1fr;gap:24px;margin-top:40px;padding-top:26px;border-top:1px solid rgba(255,255,255,.18);font-size:14.5px;color:#ccc;line-height:1.6;}
.footer-bottom a{text-decoration:underline;color:#ccc;}
.footer-legal{display:flex;justify-content:space-between;padding:22px 4px 0;font-size:12px;color:#8a8a8a;}
.footer-credit strong{color:#333;}

/* ---------- WhatsApp float ---------- */
.whatsapp-float{
  position:fixed;bottom:24px;right:24px;width:58px;height:58px;border-radius:50%;background:#25D366;
  color:#fff;display:flex;align-items:center;justify-content:center;z-index:60;box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.whatsapp-float .icon{width:28px;height:28px;}

/* ---------- Page hero (subpages) ---------- */
.page-hero{
  position:relative;min-height:420px;background-size:cover;background-position:center;
  display:flex;align-items:flex-end;
}
.page-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.15) 100%);}
.page-hero .container{position:relative;z-index:2;padding-bottom:36px;}
.page-hero h1{color:#fff;font-size:30px;font-weight:700;}

/* ---------- Generic section helpers ---------- */
.section{padding:90px 0;}
.section-tag{width:70px;height:4px;background:var(--yellow);margin-bottom:26px;border-radius:4px;}
.section h2{font-size:32px;font-weight:500;}
.section h2 b{font-weight:700;}

/* Sobre page */
.sobre-intro .container{display:grid;grid-template-columns:1fr;gap:20px;}
.sobre-intro h2{font-size:30px;font-weight:400;max-width:900px;}
.sobre-intro h2 b{font-weight:700;}
.sobre-intro h2 i{font-style:italic;}
.sobre-media{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:flex-start;margin-top:50px;}
.video-box{
  background:var(--black);border-radius:var(--radius-lg);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;cursor:pointer;
}
.video-box span{color:var(--yellow);font-family:var(--font-head);font-size:26px;font-weight:600;position:relative;z-index:2;}
.video-box img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.5;}
.sobre-text p{font-size:14.5px;color:var(--gray-text);line-height:1.7;margin-bottom:20px;}

.why-section{background:var(--yellow);padding:90px 0;}
.why-section h2{font-size:32px;font-weight:400;margin-bottom:36px;}
.why-section h2 b{font-weight:700;}
.accordion-item{background:#fff;border-radius:30px;margin-bottom:14px;overflow:hidden;}
.accordion-head{display:flex;align-items:center;justify-content:space-between;padding:18px 26px;cursor:pointer;gap:16px;}
.accordion-head-left{display:flex;align-items:center;gap:16px;font-weight:600;font-size:15px;}
.accordion-bullet{width:30px;height:30px;border-radius:50%;background:var(--black);color:var(--yellow);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.accordion-bullet .icon{width:14px;height:14px;}
.accordion-chevron{transition:transform .25s ease;flex-shrink:0;}
.accordion-item.is-open .accordion-chevron{transform:rotate(180deg);}
.accordion-body{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.accordion-item.is-open .accordion-body{max-height:200px;}
.accordion-body-inner{padding:0 26px 22px 72px;font-size:14px;color:var(--gray-text);line-height:1.6;}

.highlights-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:90px;}
.highlight-card{background:var(--black);color:#fff;border-radius:var(--radius-lg);padding:34px;}
.highlight-card .icon{color:var(--yellow);width:26px;height:26px;margin-bottom:16px;fill:var(--yellow);}
.highlight-card h3{font-size:20px;font-weight:700;margin-bottom:12px;}
.highlight-card p{font-size:14px;color:#cfcfcf;line-height:1.6;}

/* Servicos page */
.servicos-section{padding:90px 0 40px;}
.servicos-section h2{font-size:32px;font-weight:400;margin-bottom:16px;max-width:760px;}
.servicos-section h2 b{font-weight:700;}
.servicos-section > .container > p{font-size:15px;color:var(--gray-text);max-width:760px;margin-bottom:30px;line-height:1.6;}
.sub-tag{font-weight:600;font-size:16px;margin:36px 0 22px;}
.simple-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.simple-cards.cols-4{grid-template-columns:repeat(4,1fr);}
.simple-card{border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--gray-border);}
.simple-card-icon{background:var(--yellow);padding:26px;}
.simple-card-icon .icon{width:30px;height:30px;}
.simple-card-body{padding:20px 22px 26px;}
.simple-card-body h3{font-size:17px;font-weight:700;margin-bottom:10px;}
.simple-card-body p{font-size:13.5px;color:var(--gray-text);line-height:1.6;}

/* ---------- Modal Contato ---------- */
.modal-overlay{
  position:fixed;inset:0;background:rgba(10,10,10,.55);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);z-index:200;display:none;
  align-items:flex-start;justify-content:center;overflow-y:auto;padding:80px 20px 40px;
}
.modal-overlay.is-open{display:flex;}
.modal-box{width:100%;max-width:620px;display:flex;flex-direction:column;gap:24px;position:relative;}
.modal-close{
  position:absolute;top:-56px;right:0;width:40px;height:40px;border-radius:50%;background:#fff;border:none;
  display:flex;align-items:center;justify-content:center;
}
.modal-card{background:#fff;border-radius:var(--radius-lg);padding:34px;}
.modal-form-card h3{font-size:24px;font-weight:500;margin-bottom:22px;max-width:420px;}
.js-contato-form{display:flex;flex-direction:column;gap:14px;}
.js-contato-form input,.js-contato-form textarea{
  background:var(--black);color:#fff;border:none;border-radius:999px;padding:16px 22px;font-size:14px;font-family:inherit;width:100%;
}
.js-contato-form input::placeholder,.js-contato-form textarea::placeholder{color:#bbb;}
.textarea-wrap{position:relative;}
.textarea-wrap textarea{border-radius:22px;resize:none;padding-bottom:44px;}
.send-btn{
  position:absolute;right:14px;bottom:14px;width:34px;height:34px;border-radius:50%;background:var(--yellow);
  border:none;display:flex;align-items:center;justify-content:center;color:var(--black);
}
.form-feedback{margin-top:14px;font-size:13.5px;}
.form-feedback.success{color:#1a7d3a;}
.form-feedback.error{color:#b3261e;}
.modal-map-card{padding:0;overflow:hidden;display:flex;align-items:center;gap:0;}
.modal-map-card img{width:45%;height:100%;object-fit:cover;}
.modal-map-text{padding:26px;display:flex;gap:12px;align-items:flex-start;}
.modal-map-text .icon{color:#e0245e;flex-shrink:0;margin-top:2px;}
.modal-map-text p{font-size:14px;line-height:1.6;}

/* =======================================================
   Responsive
   ======================================================= */
@media (max-width: 980px){
  .footer-top{grid-template-columns:1fr 1fr;}
  .footer-map-col{grid-column:1/-1;}
  .highlights-grid{grid-template-columns:1fr;}
  .sobre-media{grid-template-columns:1fr;}
  .diferenciais .container{grid-template-columns:1fr;}
  .dif-image{order:-1;}
  .service-card{flex-basis:240px;height:320px;}
  .simple-cards{grid-template-columns:repeat(2,1fr);}
  .simple-cards.cols-4{grid-template-columns:repeat(2,1fr);}
  .testimonial-card{flex-basis:240px;}
  .badges .container{grid-template-columns:1fr;}
  .badges{margin-top:-40px;}
  .services{margin-top:-40px;padding-top:110px;}
  .hero-dots{bottom:60px;}
}

@media (max-width: 640px){
  .header-inner{padding:16px;}
  .logo img{height:36px;}
  .btn-cta{padding:10px 16px;font-size:13px;}
  .hamburger{width:40px;height:40px;}
  .hero-slide{min-height:560px;}
  .hero-slide-container{padding-top:60px;padding-bottom:90px;}
  .hero-slide h2{font-size:26px;}
  .hero-dots{right:20px;}
  .service-card{flex-basis:290px;height:387px;}
  .simple-cards{grid-template-columns:1fr;}
  .simple-cards.cols-4{grid-template-columns:1fr;}
  .testimonial-card{flex-basis:82%;}
  .partners-track{gap:40px;}
  .footer-card{padding:30px 20px;}
  .footer-top{grid-template-columns:1fr;}
  .footer-map-col{grid-column:auto;}
  .footer-bottom{grid-template-columns:1fr;}
  .cta-urgente-box{padding:32px 26px;flex-direction:column;align-items:flex-start;}
  .cta-urgente-box p{font-size:18px;}
  .section{padding:60px 0;}
  .diferenciais{padding:60px 0;}
  .diferenciais h2{font-size:28px;}
  .modal-map-card{flex-direction:column;}
  .modal-map-card img{width:100%;height:160px;}
  .modal-box{max-width:100%;}
  .modal-card{padding:24px;}
  .page-hero{min-height:280px;}
  .why-section{padding:60px 0;}
  .servicos-section{padding:60px 0 20px;}
}
