/* ============================================
   Serralheria Aparecida - Modern Website Styles
   Palette: #C62828 #EF5350 #757575 #212121 #FFFFFF
   ============================================ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --red:#C62828;
  --red-light:#EF5350;
  --red-dark:#8E1F1F;
  --gray:#757575;
  --gray-light:#EEEEEE;
  --gray-soft:#F5F5F5;
  --white:#FFFFFF;
  --black:#212121;
  --shadow:0 8px 24px rgba(0,0,0,.08);
  --shadow-lg:0 20px 50px rgba(198,40,40,.18);
  --radius:20px;
  --radius-lg:32px;
  --transition:.35s cubic-bezier(.4,0,.2,1);
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--black);
  line-height:1.6;
  background:var(--white);
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none;transition:var(--transition)}
button{font-family:inherit;cursor:pointer;border:0;background:transparent}
h1,h2,h3,h4{font-weight:800;line-height:1.2;color:var(--black)}
h1{font-size:38px}
h2{font-size:28px}
h3{font-size:22px}
h4{font-size:18px}
p{font-size:16px;color:#444}
.container{width:100%;max-width:1240px;margin:0 auto;padding:0 20px}

/* ===== TOP BAR ===== */
.topbar{
  background:linear-gradient(90deg,var(--black) 0%,#333 100%);
  color:#ddd;
  font-size:13px;
  padding:8px 0;
}
.topbar .container{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap}
.topbar-info{display:flex;gap:22px;flex-wrap:wrap}
.topbar-info span{display:inline-flex;align-items:center;gap:6px}
.topbar-info svg{width:14px;height:14px;fill:var(--red-light)}
.topbar-social a{color:#ddd;margin-left:10px;display:inline-flex}
.topbar-social svg{width:16px;height:16px;fill:currentColor;transition:var(--transition)}
.topbar-social a:hover svg{fill:var(--red-light)}

/* ===== HEADER ===== */
.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--white);
  box-shadow:0 4px 20px rgba(0,0,0,.06);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:14px 0;
}
.logo img{width:200px;height:auto}
.main-nav ul{list-style:none;display:flex;gap:6px;align-items:center}
.main-nav>ul>li{position:relative}
.main-nav>ul>li>a,.main-nav .nav-toggle{
  display:inline-flex;align-items:center;gap:6px;
  padding:10px 14px;border-radius:12px;
  font-weight:600;font-size:15px;color:var(--black);
  transition:var(--transition);
}
.main-nav>ul>li>a:hover,.main-nav .nav-toggle:hover,
.main-nav>ul>li.active>a{color:var(--red);background:rgba(198,40,40,.06)}
.has-submenu>a::after,.nav-toggle::after{
  content:"";display:inline-block;width:8px;height:8px;
  border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(45deg);margin-left:4px;margin-top:-4px;transition:var(--transition);
}
.has-submenu:hover>a::after,.has-submenu.open>a::after{transform:rotate(-135deg);margin-top:2px}
.submenu{
  position:absolute;top:100%;left:0;min-width:260px;
  background:var(--white);border-radius:16px;
  box-shadow:var(--shadow-lg);padding:10px;
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:var(--transition);list-style:none;
  border-top:3px solid var(--red);
}
.has-submenu:hover .submenu,.has-submenu:focus-within .submenu,.has-submenu.open .submenu{
  opacity:1;visibility:visible;transform:translateY(0)
}
.submenu li a{
  display:block;padding:10px 14px;border-radius:10px;
  font-size:14px;font-weight:500;color:var(--black);
}
.submenu li a:hover{background:var(--gray-soft);color:var(--red);padding-left:20px}

.cta-btn{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(135deg,var(--red) 0%,var(--red-light) 100%);
  color:#fff!important;padding:12px 22px;border-radius:50px;
  font-weight:700;font-size:14px;
  box-shadow:0 10px 25px rgba(198,40,40,.35);
  transition:var(--transition);
}
.cta-btn:hover{transform:translateY(-2px);box-shadow:0 15px 30px rgba(198,40,40,.5)}
.cta-btn svg{width:18px;height:18px;fill:currentColor}

.menu-toggle{display:none;width:44px;height:44px;border-radius:12px;background:var(--gray-soft);position:relative}
.menu-toggle span{position:absolute;left:10px;right:10px;height:2px;background:var(--black);transition:var(--transition)}
.menu-toggle span:nth-child(1){top:14px}
.menu-toggle span:nth-child(2){top:21px}
.menu-toggle span:nth-child(3){top:28px}
.menu-toggle.open span:nth-child(1){top:21px;transform:rotate(45deg)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){top:21px;transform:rotate(-45deg)}

/* ===== HERO / BANNER ===== */
.hero{
  position:relative;
  background:linear-gradient(135deg,#f8f8f8 0%,#eaeaea 100%);
  overflow:hidden;
}
.hero-img{width:100%;height:auto;display:block}

/* ===== SECTIONS ===== */
.section{padding:80px 0;position:relative}
.section-title{text-align:center;margin-bottom:20px}
.section-title h2{font-size:32px;position:relative;display:inline-block}
.section-title h2::after{
  content:"";display:block;width:80px;height:4px;
  background:linear-gradient(90deg,var(--red),var(--red-light));
  margin:12px auto 0;border-radius:4px;
}
.section-title p{color:var(--gray);max-width:700px;margin:16px auto 0}

/* Curved dividers */
.curve-top,.curve-bottom{
  position:absolute;left:0;right:0;width:100%;height:80px;
  pointer-events:none;
}
.curve-top{top:-1px;transform:rotate(180deg)}
.curve-bottom{bottom:-1px}
.curve-top svg,.curve-bottom svg{width:100%;height:100%;display:block}

/* ===== HIGHLIGHTS (Segurança/Qualidade/etc) ===== */
.highlights{background:var(--white);padding:70px 0}
.highlights-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:22px;
}
.highlight{
  text-align:center;padding:26px 14px;border-radius:var(--radius);
  background:var(--gray-soft);transition:var(--transition);
  border:2px solid transparent;
}
.highlight:hover{transform:translateY(-6px);background:#fff;border-color:var(--red);box-shadow:var(--shadow-lg)}
.highlight-icon{
  width:72px;height:72px;margin:0 auto 14px;
  background:linear-gradient(135deg,var(--red),var(--red-light));
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 20px rgba(198,40,40,.25);
}
.highlight-icon svg{width:36px;height:36px;fill:#fff}
.highlight h4{font-size:15px;margin-bottom:0}

/* ===== SERVICES GRID (Estruturas e Segurança - 3+2) ===== */
.services{
  background:var(--gray-soft);
  position:relative;
}
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:26px;
}
.services-grid.row-2{margin-top:26px;grid-template-columns:repeat(2,1fr);max-width:830px;margin-left:auto;margin-right:auto}
.service-card{
  background:var(--white);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);
  transition:var(--transition);position:relative;
  display:flex;flex-direction:column;
}
.service-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.service-img{
  width:100%;aspect-ratio:10/13.3;background:var(--gray-light);overflow:hidden;
  position:relative;
}
.service-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.service-card:hover .service-img img{transform:scale(1.05)}
.service-body{padding:22px;display:flex;flex-direction:column;flex:1}
.service-body h3{font-size:20px;margin-bottom:8px;color:var(--black)}
.service-body p{font-size:14px;color:var(--gray);margin-bottom:16px;flex:1}
.service-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--red);font-weight:700;font-size:14px;
  align-self:flex-start;
}
.service-link:hover{gap:10px}

/* Complementos e Design - background different */
.complementos{
  background:linear-gradient(135deg,var(--black) 0%,#3a3a3a 100%);
  color:#fff;
}
.complementos .section-title h2,
.complementos .section-title p{color:#fff}
.complementos .service-card{background:rgba(255,255,255,.05);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.1)}
.complementos .service-body h3{color:#fff}
.complementos .service-body p{color:#ccc}

/* ===== ABOUT / EMPRESA SMALL ===== */
.about-preview{background:var(--white);padding:90px 0}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.about-img{position:relative;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg)}
.about-img::before{
  content:"";position:absolute;top:-20px;left:-20px;right:20px;bottom:20px;
  border:3px solid var(--red);border-radius:var(--radius-lg);z-index:0;
}
.about-img img{position:relative;z-index:1;border-radius:var(--radius-lg)}
.about-text .badge{
  display:inline-block;background:rgba(198,40,40,.1);color:var(--red);
  padding:6px 14px;border-radius:20px;font-weight:700;font-size:12px;
  margin-bottom:14px;letter-spacing:1px;text-transform:uppercase;
}
.about-text h2{margin-bottom:18px}
.about-text p{margin-bottom:14px}
.about-features{list-style:none;margin-top:20px}
.about-features li{padding:8px 0;display:flex;align-items:center;gap:10px;font-weight:500}
.about-features li::before{content:"✓";color:var(--red);font-weight:900;font-size:20px}

/* ===== DIFERENCIAIS / PROCESS ===== */
.process{background:var(--gray-soft);padding:90px 0;position:relative;overflow:hidden}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:40px}
.process-card{
  background:var(--white);border-radius:var(--radius);
  padding:32px 24px;text-align:center;
  position:relative;transition:var(--transition);
  border-top:5px solid var(--red);
}
.process-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.process-num{
  position:absolute;top:-20px;left:50%;transform:translateX(-50%);
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--red),var(--red-light));
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:18px;box-shadow:0 8px 15px rgba(198,40,40,.35);
}
.process-icon{
  width:70px;height:70px;margin:20px auto 16px;
  background:rgba(198,40,40,.1);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.process-icon svg{width:34px;height:34px;fill:var(--red)}
.process-card h4{margin-bottom:10px;font-size:17px}
.process-card p{font-size:14px;color:var(--gray)}

/* ===== TESTIMONIALS ===== */
.testimonials{background:var(--white);padding:90px 0;position:relative}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:40px}
.testimonial{
  background:var(--gray-soft);border-radius:var(--radius);
  padding:30px;position:relative;transition:var(--transition);
}
.testimonial:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.testimonial::before{
  content:"“";position:absolute;top:0;left:20px;
  font-size:70px;color:var(--red-light);opacity:.3;font-family:Georgia,serif;line-height:1;
}
.testimonial-stars{color:#FFC107;margin-bottom:12px;font-size:18px;letter-spacing:2px}
.testimonial p{font-style:italic;margin-bottom:18px;color:#444}
.testimonial-author{display:flex;align-items:center;gap:12px}
.testimonial-avatar{
  width:48px;height:48px;border-radius:50%;
  background:linear-gradient(135deg,var(--red),var(--red-light));
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:18px;
}
.testimonial-author strong{display:block;font-weight:700}
.testimonial-author small{color:var(--gray);font-size:12px}

/* ===== CTA STRIP ===== */
.cta-strip{
  background:linear-gradient(135deg,var(--red) 0%,var(--red-dark) 100%);
  color:#fff;padding:60px 0;position:relative;overflow:hidden;
}
.cta-strip::before{
  content:"";position:absolute;top:-50%;right:-10%;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.05);
}
.cta-strip::after{
  content:"";position:absolute;bottom:-50%;left:-5%;
  width:300px;height:300px;border-radius:50%;
  background:rgba(255,255,255,.05);
}
.cta-strip .container{position:relative;z-index:1;display:flex;justify-content:space-between;align-items:center;gap:30px;flex-wrap:wrap}
.cta-strip h2{color:#fff;font-size:28px;margin-bottom:6px}
.cta-strip p{color:rgba(255,255,255,.85);margin-bottom:0}
.cta-strip .cta-btn{background:#fff;color:var(--red)!important;box-shadow:0 10px 25px rgba(0,0,0,.2)}
.cta-strip .cta-btn:hover{background:var(--black);color:#fff!important}

/* ===== BREADCRUMB ===== */
.breadcrumb{background:var(--gray-soft);padding:18px 0;font-size:13px;color:var(--gray)}
.breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.breadcrumb li:not(:last-child)::after{content:"›";margin-left:6px;color:var(--gray)}
.breadcrumb a{color:var(--red);font-weight:600}
.breadcrumb li:last-child{color:var(--black);font-weight:600}

/* ===== PAGE HEADER ===== */
.page-header{
  background:linear-gradient(135deg,var(--black) 0%,var(--red-dark) 100%);
  color:#fff;padding:70px 0 90px;position:relative;overflow:hidden;text-align:center;
}
.page-header::before{
  content:"";position:absolute;top:-100px;right:-100px;
  width:400px;height:400px;border-radius:50%;background:rgba(198,40,40,.3);
}
.page-header::after{
  content:"";position:absolute;bottom:-150px;left:-100px;
  width:400px;height:400px;border-radius:50%;background:rgba(239,83,80,.15);
}
.page-header .container{position:relative;z-index:1}
.page-header h1{color:#fff;margin-bottom:12px}
.page-header p{color:rgba(255,255,255,.85);max-width:700px;margin:0 auto}

/* ===== SERVICE PAGE ===== */
.service-detail{padding:80px 0}
.service-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.service-detail-img{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:10/13.3}
.service-detail-img img{width:100%;height:100%;object-fit:cover}
.service-detail h2{margin-bottom:16px}
.service-detail p{margin-bottom:14px}
.service-detail ul{list-style:none;margin:18px 0}
.service-detail ul li{padding:8px 0 8px 28px;position:relative}
.service-detail ul li::before{
  content:"";position:absolute;left:0;top:14px;
  width:16px;height:16px;border-radius:50%;
  background:linear-gradient(135deg,var(--red),var(--red-light));
}

/* ===== CONTACT ===== */
.contact-section{padding:80px 0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px}
.contact-info{background:var(--gray-soft);border-radius:var(--radius-lg);padding:40px}
.contact-info h3{margin-bottom:20px;color:var(--red)}
.contact-item{display:flex;gap:16px;margin-bottom:20px;align-items:flex-start}
.contact-icon{
  width:48px;height:48px;flex-shrink:0;
  background:linear-gradient(135deg,var(--red),var(--red-light));
  border-radius:50%;display:flex;align-items:center;justify-content:center;
}
.contact-icon svg{width:22px;height:22px;fill:#fff}
.contact-item strong{display:block;font-weight:700;margin-bottom:4px}
.contact-item span,.contact-item a{color:var(--gray);font-size:14px;line-height:1.5}
.contact-item a:hover{color:var(--red)}
.contact-form{background:var(--white);border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow)}
.contact-form h3{margin-bottom:20px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-weight:600;margin-bottom:6px;font-size:14px}
.form-group input,.form-group textarea{
  width:100%;padding:12px 16px;border:2px solid var(--gray-light);
  border-radius:12px;font-family:inherit;font-size:14px;
  transition:var(--transition);background:#fafafa;
}
.form-group input:focus,.form-group textarea:focus{
  outline:0;border-color:var(--red);background:#fff;
  box-shadow:0 0 0 4px rgba(198,40,40,.1);
}
.form-group textarea{resize:vertical;min-height:120px}
.contact-form button{
  background:linear-gradient(135deg,var(--red),var(--red-light));
  color:#fff;padding:14px 32px;border-radius:50px;
  font-weight:700;font-size:15px;width:100%;
  box-shadow:0 10px 20px rgba(198,40,40,.3);
  transition:var(--transition);
}
.contact-form button:hover{transform:translateY(-2px);box-shadow:0 15px 30px rgba(198,40,40,.4)}

.map-wrap{margin-top:60px;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);height:420px}
.map-wrap iframe{width:100%;height:100%;border:0}

/* ===== FAQ ===== */
.faq{padding:80px 0;background:var(--gray-soft)}
.faq-list{max-width:820px;margin:40px auto 0}
.faq-item{
  background:var(--white);border-radius:16px;margin-bottom:14px;
  overflow:hidden;box-shadow:var(--shadow);
}
.faq-question{
  width:100%;padding:20px 24px;text-align:left;
  display:flex;justify-content:space-between;align-items:center;gap:14px;
  font-weight:700;font-size:15px;color:var(--black);
  transition:var(--transition);
}
.faq-question:hover{background:rgba(198,40,40,.03)}
.faq-question::after{
  content:"+";font-size:24px;color:var(--red);
  transition:var(--transition);flex-shrink:0;
}
.faq-item.open .faq-question::after{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-item.open .faq-answer{max-height:500px}
.faq-answer div{padding:0 24px 22px;color:var(--gray);font-size:14px}

/* ===== FOOTER ===== */
.site-footer{
  background:linear-gradient(180deg,var(--black) 0%,#000 100%);
  color:#bdbdbd;padding:70px 0 0;position:relative;
}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:40px}
.footer-brand img{width:220px;background:#fff;padding:14px;border-radius:12px;margin-bottom:16px}
.footer-brand p{color:#999;font-size:14px;margin-bottom:16px}
.footer-social{display:flex;gap:10px}
.footer-social a{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.footer-social a:hover{background:var(--red);transform:translateY(-3px)}
.footer-social svg{width:16px;height:16px;fill:#fff}
.footer-col h4{color:#fff;font-size:16px;margin-bottom:18px;position:relative;padding-bottom:10px}
.footer-col h4::after{
  content:"";position:absolute;bottom:0;left:0;
  width:36px;height:3px;background:var(--red);border-radius:3px;
}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:10px;font-size:14px}
.footer-col ul li a{color:#bdbdbd;transition:var(--transition)}
.footer-col ul li a:hover{color:var(--red-light);padding-left:6px}
.footer-contact li{display:flex;gap:10px;align-items:flex-start;font-size:14px;color:#bdbdbd}
.footer-contact svg{width:16px;height:16px;fill:var(--red-light);flex-shrink:0;margin-top:4px}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:50px;padding:20px 0;text-align:center;font-size:13px;color:#888;
}
.footer-bottom a{color:var(--red-light)}

/* ===== WHATSAPP FLOAT ===== */
.wa-float{
  position:fixed;bottom:24px;right:24px;z-index:99;
  width:60px;height:60px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px rgba(37,211,102,.5);
  animation:pulse 2s infinite;
}
.wa-float svg{width:32px;height:32px;fill:#fff}
@keyframes pulse{
  0%,100%{box-shadow:0 10px 30px rgba(37,211,102,.5),0 0 0 0 rgba(37,211,102,.5)}
  50%{box-shadow:0 10px 30px rgba(37,211,102,.5),0 0 0 15px rgba(37,211,102,0)}
}

/* ===== COOKIE BANNER ===== */
.cookie-banner{
  position:fixed;bottom:20px;left:20px;right:100px;z-index:98;
  background:var(--white);border-radius:16px;padding:20px 24px;
  box-shadow:0 20px 50px rgba(0,0,0,.2);
  display:none;align-items:center;gap:20px;flex-wrap:wrap;
  border-left:5px solid var(--red);
}
.cookie-banner.show{display:flex}
.cookie-banner p{margin:0;font-size:13px;flex:1;min-width:260px}
.cookie-banner .cta-btn{padding:10px 20px;font-size:13px}
.cookie-banner button.decline{color:var(--gray);font-size:13px;font-weight:600;text-decoration:underline}

/* ===== 404 ===== */
.error-404{
  min-height:60vh;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:80px 20px;
}
.error-404 .big{
  font-size:150px;font-weight:900;line-height:1;
  background:linear-gradient(135deg,var(--red),var(--red-light));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.error-404 h1{margin:10px 0 12px}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .highlights-grid{grid-template-columns:repeat(3,1fr)}
  .highlights-grid .highlight:nth-child(4){grid-column:1 / 2;margin-left:16.6%}
  .highlights-grid .highlight:nth-child(5){grid-column:2 / 3}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .testimonials-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .about-grid,.service-detail-grid,.contact-grid{grid-template-columns:1fr;gap:40px}
}
@media(max-width:768px){
  h1{font-size:30px}
  h2{font-size:24px}
  .section{padding:60px 0}
  .topbar-info{display:none}
  .topbar .container{justify-content:center}
  .menu-toggle{display:block}
  .header-inner .cta-btn{display:none}
  .main-nav{
    position:fixed;top:0;left:-100%;width:85%;max-width:340px;height:100vh;
    background:var(--white);z-index:200;padding:80px 20px 20px;
    box-shadow:20px 0 40px rgba(0,0,0,.2);transition:.4s;
    overflow-y:auto;
  }
  .main-nav.open{left:0}
  .main-nav ul{flex-direction:column;align-items:stretch;gap:2px}
  .main-nav>ul>li{width:100%}
  .main-nav>ul>li>a,.main-nav .nav-toggle{width:100%;justify-content:space-between}
  .submenu{position:static;box-shadow:none;padding:0 0 0 20px;opacity:1;visibility:visible;transform:none;
    max-height:0;overflow:hidden;transition:max-height .3s;border-top:0;
  }
  .has-submenu.open .submenu{max-height:400px}
  .nav-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:150;opacity:0;visibility:hidden;transition:.3s}
  .nav-overlay.show{opacity:1;visibility:visible}
  .highlights-grid{grid-template-columns:repeat(2,1fr)}
  .highlights-grid .highlight:nth-child(n){grid-column:auto;margin-left:0}
  .highlights-grid .highlight:nth-child(5){grid-column:1 / 3;max-width:50%;margin:0 auto}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .services-grid.row-2{grid-template-columns:repeat(2,1fr)}
  .complementos .services-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr}
  .testimonials-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:30px;text-align:center}
  .footer-col h4::after{margin:10px auto 0;left:50%;transform:translateX(-50%)}
  .footer-brand{text-align:center}
  .footer-brand img{margin:0 auto 16px}
  .footer-social{justify-content:center}
  .footer-contact li{justify-content:center;text-align:center}
  .cta-strip .container{text-align:center;flex-direction:column}
  .cookie-banner{left:12px;right:12px;bottom:12px}
  .wa-float{width:54px;height:54px;bottom:16px;right:16px}
}
@media(max-width:480px){
  .services-grid,.services-grid.row-2{grid-template-columns:1fr}
  .error-404 .big{font-size:100px}
}

/* Animation */
.fade-up{opacity:0;transform:translateY(30px);transition:opacity .8s,transform .8s}
.fade-up.visible{opacity:1;transform:translateY(0)}
