/* =========================================================
   Orla Uniformes — main stylesheet
   Brand palette (blue #0088CC) with a modernized layout.
   ========================================================= */

:root {
  --primary: #0088cc;
  --primary-dark: #006699;
  --primary-darker: #00557f;
  --primary-light: #e8f5fc;
  --accent: #e36159;
  --dark: #20262e;
  --dark-2: #2b323b;
  --grey: #5c6670;
  --grey-light: #8a949e;
  --bg-light: #f6f9fb;
  --border: #e7edf2;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(20, 40, 60, 0.06);
  --shadow-md: 0 12px 34px rgba(20, 40, 60, 0.1);
  --shadow-lg: 0 22px 60px rgba(20, 40, 60, 0.16);
  --radius: 14px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
}

* {
  box-sizing: border-box;
}

/* Accessibility: skip link + visible keyboard focus */
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 2000;
  padding: 10px 18px;
  background: var(--primary-darker);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 0;
  color: #fff;
}
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--grey);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

p { margin: 0 0 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  padding: 0.85rem 1.7rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 136, 204, 0.32);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 136, 204, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-3px);
}
.btn-ghost {
  background: #fff;
  color: var(--primary-dark);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* ---------- Section helpers ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-light { background: var(--bg-light); }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
}
.section-head h2 span { color: var(--primary); }
.section-head p { font-size: 1.05rem; }

/* =========================================================
   Topbar
   ========================================================= */
.topbar {
  background: var(--dark);
  color: #cfd6dd;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar a { color: #cfd6dd; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span i { color: var(--primary); margin-right: 7px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.topbar-social a:hover { background: var(--primary); color: #fff; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  transition: min-height var(--transition);
}
.site-header.scrolled .header-inner { min-height: 64px; }

.brand { display: flex; align-items: center; }

/* Header: logo destacado (badge da marca) */
.brand .brand-badge {
  height: 56px;
  width: auto;
  border-radius: 10px;
  transition: height var(--transition);
}
.site-header.scrolled .brand .brand-badge { height: 46px; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 10px 16px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.d-none-mobile { display: inline-flex; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* =========================================================
   Hero (compacto)
   ========================================================= */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  transform: scale(1.05);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 85, 127, 0.94) 0%, rgba(0, 136, 204, 0.82) 55%, rgba(0, 102, 153, 0.9) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 0;
}
.hero-logo-card {
  display: inline-flex;
  margin-bottom: 18px;
}
.hero-logo {
  width: clamp(280px, 46vw, 440px);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.3));
}
.hero-tag {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 300;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.95);
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0.8;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* =========================================================
   Intro strip
   ========================================================= */
.intro-strip {
  background: var(--primary);
  color: #fff;
  padding: 38px 0;
}
.intro-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.intro-strip p { margin: 0; font-size: 1.1rem; max-width: 760px; }
.intro-strip .highlight {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  padding: 2px 10px;
  border-radius: 6px;
}

/* =========================================================
   About
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.lead-statement {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 24px;
}
.lead-statement .alt-font { color: var(--primary); }
.about h3 { margin-top: 26px; font-size: 1.4rem; }
.about-stats {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.stat {
  flex: 1 1 140px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
}
.stat span { font-size: 0.9rem; color: var(--grey-light); }

.about-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }

/* Sustainability panels */
.sustain { margin-top: 84px; }
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.panel-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}
.panel-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.panel-card:hover img { transform: scale(1.08); }
.panel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 85, 127, 0.55), transparent 55%);
}

/* =========================================================
   Services
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-6deg);
}
.service-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { margin: 0; font-size: 0.96rem; }
.alt-font { font-style: italic; color: var(--primary); font-weight: 600; }

/* =========================================================
   Processes
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.process-figure {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.process-list { display: grid; gap: 20px; }
.process-item {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.process-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.process-item h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; margin-bottom: 8px;
}
.process-item h4 i { color: var(--primary); }
.process-item p { margin: 0; font-size: 0.95rem; }

/* =========================================================
   Collection carousel (carrossell)
   ========================================================= */
.carousel-wrap { position: relative; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius); }
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.carousel-slide {
  min-width: 33.3333%;
  padding: 0 12px;
  box-sizing: border-box;
}
.carousel-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  aspect-ratio: 3 / 4;
  position: relative;
}
.carousel-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.carousel-card:hover img { transform: scale(1.07); }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--primary); color: #fff; }
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: #cdd8e1;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.carousel-dots button.active { background: var(--primary); width: 26px; border-radius: 6px; }

/* =========================================================
   Portfolio
   ========================================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 85, 127, 0.85), rgba(0, 136, 204, 0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .plus {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.portfolio-overlay strong { font-size: 1.05rem; }
.portfolio-overlay span { font-size: 0.82rem; opacity: 0.85; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.contact-info .lead { color: var(--primary); font-weight: 600; font-size: 1.05rem; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ci-icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-list strong { color: var(--dark); display: block; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.rotator-words {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 2px 14px;
  border-radius: 8px;
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 64px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 6px; }
.cta-band p { margin: 0; opacity: 0.9; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--dark);
  color: #aeb7c0;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-brand-card {
  display: inline-flex;
  margin-bottom: 12px;
}
.footer-brand-card img { height: 110px; width: auto; margin: -22px 0; }
.site-footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: #aeb7c0; }
.footer-grid a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact i { color: var(--primary); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 56px;
  padding: 22px 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a { color: var(--primary); }

/* =========================================================
   WhatsApp floating button
   ========================================================= */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0;
}
.wa-float .wa-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition);
}
.wa-float:hover .wa-icon { transform: scale(1.08); }
.wa-tooltip {
  background: #fff;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 30px;
  margin-right: 12px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--primary); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 992px) {
  .about-grid,
  .process-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .carousel-slide { min-width: 50%; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .topbar-info { display: none; }
  .nav-toggle { display: block; }
  .d-none-mobile { display: none; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    padding: 90px 24px 30px;
    transition: right var(--transition);
    z-index: 1100;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 14px 16px; border-bottom: 1px solid var(--border); }
  .main-nav a::after { display: none; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 1050;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  .services-grid,
  .portfolio-grid,
  .panel-grid { grid-template-columns: 1fr 1fr; }
  .carousel-slide { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .intro-strip .container { flex-direction: column; text-align: center; }
  .hero { min-height: 380px; }
  .hero-inner { padding: 44px 0; }
}

@media (max-width: 480px) {
  .services-grid,
  .portfolio-grid,
  .panel-grid { grid-template-columns: 1fr; }
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
}
