@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root{
  --primary:#E63946;
  --primary-dark:#c72836;
  --secondary:#FFB703;
  --dark:#2c3e50;
  --bg:#FFFFFF;
  --text:#333333;
  --text-light:#666666;
  --chat:#1abc9c;
  --chat-dark:#16a085;
  --radius-lg:20px;
  --radius-md:12px;
  --radius-full:999px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.16);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Poppins',sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
.material-symbols-outlined{
  font-variation-settings:'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24;
  vertical-align:middle;
}
.container{
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}
section{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:120px 0 80px;
}
h1,h2,h3{font-weight:700;line-height:1.15;}
h1{font-size:3rem;}
h2{font-size:2.5rem;}
h3{font-size:1rem;font-weight:600;}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--primary);
  font-weight:600;
  font-size:0.85rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:28px;height:3px;
  background:var(--secondary);
  border-radius:3px;
}
.section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 56px;
}
.section-head p{color:var(--text-light);font-size:1.05rem;margin-top:14px;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 32px;
  border-radius:var(--radius-full);
  font-weight:600;
  font-size:0.95rem;
  border:none;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:active{transform:scale(0.97);}
.btn-chat{
  background:var(--chat);
  color:#fff;
  box-shadow:0 10px 24px rgba(37,211,102,0.35);
}
.btn-chat:hover{background:var(--chat-dark);transform:translateY(-2px);}
.btn-outline{
  background:transparent;
  color:var(--dark);
  border:2px solid #dfe3e7;
}
.btn-outline:hover{border-color:var(--dark);transform:translateY(-2px);}
.btn-light{
  background:#fff;
  color:var(--dark);
}
.btn-light:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);}

/* HEADER */
header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:box-shadow .3s ease;
}
header.scrolled{box-shadow:var(--shadow-sm);}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:84px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-size:1.1rem;
  color:var(--dark);
}
.logo-mark{
  width:40px;height:40px;
  border-radius:50%;
  background:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.logo-mark .material-symbols-outlined{color:#fff;font-size:22px;}
nav ul{
  display:flex;
  gap:36px;
  font-weight:500;
  font-size:0.95rem;
}
nav a{
  color:var(--dark);
  position:relative;
  padding:4px 0;
}
nav a::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:0;height:2px;
  background:var(--primary);
  transition:width .25s ease;
}
nav a:hover::after{width:100%;}
.header-right{
  display:flex;
  align-items:center;
  gap:28px;
}
.header-phone{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  color:var(--dark);
  font-size:0.95rem;
}
.header-phone .material-symbols-outlined{color:var(--primary);font-size:20px;}
.btn-header-wa{
  background:var(--chat);
  color:#fff;
  padding:11px 22px;
  border-radius:25px;
  font-weight:600;
  font-size:0.9rem;
  display:flex;
  align-items:center;
  gap:8px;
  transition:background .25s ease, transform .25s ease;
}
.btn-header-wa:hover{background:var(--chat-dark);transform:translateY(-1px);}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;}
.nav-toggle .material-symbols-outlined{font-size:30px;color:var(--dark);}

/* HERO */
#hero{
  background:
    radial-gradient(circle at 88% 12%, rgba(255,183,3,0.12) 0%, transparent 45%),
    linear-gradient(180deg,#fff 0%,#fff 100%);
  padding-top:150px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:60px;
  align-items:center;
  max-width:100%;
  overflow:hidden;
}
.hero-text h1{margin-bottom:20px;}
.hero-text h1 span{color:var(--primary);}
.hero-text .subtitle{
  font-size:1.1rem;
  color:var(--text-light);
  max-width:520px;
  margin-bottom:34px;
}
.hero-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-bottom:38px;
}
.hero-feature{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:500;
  font-size:0.92rem;
  color:var(--dark);
}
.hero-feature .icon-badge{
  width:38px;height:38px;
  border-radius:10px;
  background:#FDEEEF;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.hero-feature .icon-badge .material-symbols-outlined{color:var(--primary);font-size:20px;}
.hero-cta{display:flex;gap:16px;flex-wrap:wrap;}
.hero-image{
  position:relative;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/3.4;
  min-height:400px;
  background:linear-gradient(135deg,var(--dark),#1a2733);
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  visibility:visible !important;
  opacity:1 !important;
}
.hero-badge{
  position:absolute;
  bottom:22px;left:22px;
  background:#fff;
  border-radius:var(--radius-md);
  padding:14px 20px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:var(--shadow-md);
  z-index:10;
}
.hero-badge .material-symbols-outlined{color:var(--primary);font-size:26px;}
.hero-badge strong{display:block;font-size:1.1rem;color:var(--dark);}
.hero-badge span{font-size:0.78rem;color:var(--text-light);}

/* SOBRE */
#sobre .about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:64px;
  align-items:center;
}
.about-image{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/4.3;
  background:linear-gradient(135deg,#fdeeef,#fff3d9);
}
.about-image img{width:100%;height:100%;object-fit:cover;}
.about-content p.lead{font-size:1.05rem;color:var(--text-light);margin-bottom:32px;}
.about-highlights{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.about-highlight{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.about-highlight .icon-badge{
  width:44px;height:44px;
  border-radius:12px;
  background:var(--dark);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.about-highlight .icon-badge i{color:white;font-size:22px;}
.about-highlight .icon-badge .material-symbols-outlined{color:var(--secondary);font-size:22px;}
.about-highlight h3{margin-bottom:4px;color:var(--dark);}
.about-highlight p{font-size:0.88rem;color:var(--text-light);}

/* SERVICOS */
#servicos{background:#FAFAFA;}
.services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
}
.service-card{
  height:280px;
  background:#fff;
  border-radius:var(--radius-lg);
  padding:26px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  box-shadow:var(--shadow-sm);
  border-top:8px solid var(--primary);
  transition:transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.service-icon{
  width:64px;height:64px;
  border-radius:50%;
  background:#FDEEEF;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
}
.service-icon .material-symbols-outlined{font-size:2.5rem;color:var(--primary);}
.service-card h3{font-size:0.95rem;color:var(--dark);margin-bottom:10px;}
.service-card p{font-size:0.85rem;color:#666;}

/* CASE */
#case{
  background:var(--dark);
  color:#fff;
}
.case-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:64px;
  align-items:center;
}
.case-image{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/4.3;
  background:linear-gradient(135deg,#1a2733,#33475a);
}
.case-image img{width:100%;height:100%;object-fit:cover;}
#case .eyebrow{color:var(--secondary);}
#case h2{color:#fff;margin-bottom:20px;}
#case .lead{color:#c7d0d8;font-size:1.05rem;margin-bottom:34px;max-width:520px;}
.case-benefits{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-bottom:38px;
}
.case-benefit{display:flex;gap:12px;align-items:flex-start;}
.case-benefit .material-symbols-outlined{color:var(--secondary);font-size:24px;}
.case-benefit h3{color:#fff;font-size:0.92rem;margin-bottom:2px;}
.case-benefit p{color:#a9b4bd;font-size:0.82rem;}

/* DEPOIMENTOS */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.testimonial-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:34px 28px;
  box-shadow:var(--shadow-sm);
  border:1px solid #f0f0f0;
}
.stars{color:var(--secondary);font-size:1.05rem;letter-spacing:2px;margin-bottom:18px;}
.testimonial-card p.quote{color:var(--text);font-size:0.95rem;margin-bottom:26px;min-height:96px;}
.testimonial-author{display:flex;align-items:center;gap:14px;}
.author-avatar{
  width:46px;height:46px;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:600;
  flex-shrink:0;
}
.testimonial-author strong{display:block;font-size:0.92rem;color:var(--dark);}
.testimonial-author span{font-size:0.8rem;color:var(--text-light);}

/* CONTATO */
#contato{background:#FAFAFA;}
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:56px;
  align-items:start;
}
.contact-info h2{margin-bottom:12px;}
.contact-info>p{color:var(--text-light);margin-bottom:36px;}
.contact-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:18px 0;
  border-bottom:1px solid #e8e8e8;
}
.contact-item .icon-badge{
  width:42px;height:42px;
  border-radius:10px;
  background:#FDEEEF;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.contact-item .icon-badge .material-symbols-outlined{color:var(--primary);font-size:21px;}
.contact-item strong{display:block;font-size:0.92rem;color:var(--dark);margin-bottom:3px;}
.contact-item span{font-size:0.88rem;color:var(--text-light);}
.contact-info .btn-chat{margin-top:28px;width:100%;}
.map-wrap{
  height:500px;
  width:100%;
  border-radius:var(--radius-md);
  overflow:hidden;
}
.map-wrap iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* LICENÇAS */
#licencas{background:#fff;}
.licenses-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.license-card{
  background:#f9f9f9;
  border-radius:var(--radius-lg);
  padding:28px 24px;
  border-left:4px solid var(--primary);
  box-shadow:var(--shadow-sm);
}
.license-card h3{
  color:var(--dark);
  font-size:1.05rem;
  margin-bottom:16px;
  font-weight:700;
}
.license-card ul li{
  font-size:0.88rem;
  color:var(--text-light);
  margin-bottom:10px;
  padding-left:16px;
  position:relative;
}
.license-card ul li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--primary);
  font-weight:700;
}

/* FOOTER */
footer{
  background:var(--dark);
  color:#c7d0d8;
  padding:70px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-logo{display:flex;align-items:center;gap:12px;margin-bottom:16px;color:#fff;font-weight:700;font-size:1.05rem;}
.footer-col h4{color:#fff;font-size:0.9rem;margin-bottom:18px;letter-spacing:0.04em;text-transform:uppercase;}
.footer-col ul li{margin-bottom:12px;font-size:0.9rem;}
.footer-col ul li a:hover{color:var(--secondary);}
.footer-col p{font-size:0.88rem;line-height:1.7;}
.compliance-tags{display:flex;flex-wrap:wrap;gap:8px;}
.compliance-tags span{
  border:1px solid rgba(255,255,255,0.2);
  padding:5px 12px;
  border-radius:var(--radius-full);
  font-size:0.75rem;
}
.social-links{
  display:flex;
  gap:14px;
}
.social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.1);
  color:#fff;
  transition:background .25s ease, color .25s ease;
}
.social-links a:hover{
  background:var(--primary);
  color:#fff;
}
.social-links .material-symbols-outlined{font-size:20px;}
.footer-bottom{
  padding-top:26px;
  text-align:center;
  font-size:0.82rem;
  color:#8a97a1;
}

/* WHATSAPP FLOAT */
.wa-float{
  position:fixed;
  bottom:28px;right:28px;
  width:80px;height:80px;
  background:var(--chat);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(26,188,156,0.5);
  z-index:900;
  animation:pulse 2s infinite;
}
.wa-float i{color:#fff;font-size:40px;}
.wa-float .material-symbols-outlined{color:#fff;font-size:28px;}
@keyframes pulse{
  0%{box-shadow:0 10px 30px rgba(26,188,156,0.5);}
  50%{box-shadow:0 10px 30px rgba(26,188,156,0.8);}
  100%{box-shadow:0 10px 30px rgba(26,188,156,0.5);}
}

/* RESPONSIVE */
@media (max-width:1199px){
  .hero-grid{gap:40px;}
  .services-grid{grid-template-columns:repeat(4,1fr);gap:18px;}
  .licenses-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  #sobre .about-grid, #case .case-grid{grid-template-columns:1fr;gap:48px;}
  .about-grid .about-image, .case-grid .case-image{order:-1;}
}
@media (max-width:1024px){
  .hero-grid{gap:30px;}
  .services-grid{grid-template-columns:repeat(3,1fr);gap:16px;}
  .about-highlights, .case-benefits{grid-template-columns:1fr 1fr;}
  .hero-features{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:991px){
  h1{font-size:2.4rem;}
  h2{font-size:2rem;}
  .hero-grid, .about-grid, .case-grid, .contact-grid{grid-template-columns:1fr;}
  .hero-grid{gap:30px;}
  .about-grid .about-image, .case-grid .case-image{order:-1;}
  .hero-features, .about-highlights, .case-benefits{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .licenses-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .testimonials-grid{grid-template-columns:1fr;}
  nav{display:none;}
  .header-phone{display:none;}
  .nav-toggle{display:block;}
}
@media (max-width:768px){
  section{padding:80px 0 50px;}
  .container{padding:0 16px;max-width:100%;}
  h1{font-size:2rem;}
  h2{font-size:1.7rem;}
  .hero-grid{gap:20px;}
  .hero-image{min-height:300px;}
  .services-grid{grid-template-columns:1fr;gap:12px;}
  .service-card{height:auto;min-height:220px;}
  .licenses-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .hero-cta{flex-direction:column;}
  .btn{width:100%;}
  .contact-info .btn-chat{width:100%;}
  .map-wrap{height:300px;}
}
@media (max-width:480px){
  section{padding:60px 0 40px;}
  .container{padding:0 12px;max-width:100%;}
  h1{font-size:1.6rem;}
  h2{font-size:1.4rem;}
  .header-inner{height:70px;}
  .logo{font-size:1rem;}
  .btn{padding:12px 20px;font-size:0.85rem;}
  .service-card{min-height:200px;}
  .hero-image{min-height:250px;}
  .map-wrap{height:250px;}
  .wa-float{width:56px;height:56px;bottom:20px;right:20px;}
}
@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important;}
}
