/* NC Steel Solutions — rebrand 2026. Fond blanc, charbon + or/bronze. */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F5F3;
  --surface: #FFFFFF;
  --text: #191919;
  --text-soft: #5C5C5C;
  --border: #E5E3DF;
  --amber: #C08A3E;     /* or clair — accent principal */
  --amber-dk: #986E2A;  /* or foncé — hover */
  --terra: #A6772F;     /* or mi-foncé — fin de dégradé métallique */
  --terra-dk: #855E22;
  --ink: #171717;       /* charbon — footer, bandes, overlay */
  --font-head: 'Poppins', 'Montserrat', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(25,25,25,.10);
  --shadow-h: 0 14px 40px rgba(25,25,25,.16);
  --header-h: 72px;
  --maxw: 1200px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--text); line-height: 1.2; margin: 0 0 .6em; }
p { margin: 0 0 1em; }
a { color: var(--terra); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--amber-dk); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* Honeypot anti-bot — masqué */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Conteneur maison (indépendant du .container Bootstrap) */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER STICKY + NAV + HAMBURGER + PANNEAU MOBILE
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 40px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  position: relative;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .4rem 0;
  transition: color .2s ease;
}
.nav-list a { color: var(--text); }
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width .25s ease;
}
.nav-list a:hover::after,
.nav-list a:focus-visible::after { width: 100%; }
.nav-list a:hover { color: var(--amber); }

/* Hamburger — caché en desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--text);
  transition: background .3s ease, transform .3s ease, opacity .3s ease;
}

/* Panneau mobile — caché par défaut */
.mobile-panel {
  display: none;
  flex-direction: column;
  gap: .35rem;
  padding: 1rem 20px 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mobile-panel.open { display: flex; }
.mobile-panel .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.mobile-panel .nav-list li { width: 100%; }
.mobile-panel .nav-list a {
  display: block;
  min-height: 48px;
  line-height: 48px;
  padding: 0 .5rem;
  color: var(--text) !important;
  text-shadow: none;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
}
.mobile-panel .nav-list a::after { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: #171717 url("images/hero-steel.jpg") center center / cover no-repeat;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(23,23,23,.74), rgba(23,23,23,.45)),
    linear-gradient(to top, rgba(23,23,23,.55), rgba(23,23,23,.10) 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--header-h) + 2rem) 20px 3rem;
  text-align: left;
}
.hero-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: #E5C07A;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  line-height: 1.08;
  margin: 0 0 1.1rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.hero-sub {
  color: rgba(255,255,255,.92);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  max-width: 640px;
  margin: 0 0 1.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 2rem;
  color: var(--amber);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero-tagline span { opacity: .7; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.9rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-primary {
  color: #191919;
  background: linear-gradient(135deg, var(--amber), var(--terra));
  box-shadow: 0 10px 26px rgba(152,110,42,.35);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  color: #191919;
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(152,110,42,.45);
}
.btn-success {
  color: #191919;
  background: linear-gradient(135deg, var(--amber), var(--terra));
  box-shadow: 0 10px 26px rgba(152,110,42,.30);
}
.btn-success:hover,
.btn-success:focus-visible {
  color: #191919;
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section.bgcolor,
.section.lb { background: var(--bg-alt); }
.noover { overflow: hidden; }

.section-title {
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-title.text-center { text-align: center; }
.section-title h3 {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 700;
  padding-bottom: .6rem;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.section-title h3::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 64px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--amber), var(--terra));
}
.section-title p { color: var(--text-soft); font-size: 1.2rem; }

/* Bloc "Sobre" (tagline-message) */
.tagline-message { max-width: 800px; margin: 0 auto; text-align: center; }
.tagline-message h3 { font-size: clamp(2rem, 4.2vw, 2.9rem); font-weight: 700; }
.tagline-message p { color: var(--text-soft); font-size: 1.2rem; }

/* Bloc "O que fazemos" */
.text-widget h3 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 700;
  text-align: center;
}
.text-widget > .clearfix {
  max-width: 740px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-soft);
  font-size: 1.2rem;
}

/* Listes à coches */
ul.check {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.check li {
  position: relative;
  padding: .65rem 0 .65rem 2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1.08rem;
}
ul.check li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: .55rem;
  width: 1.35rem; height: 1.35rem;
  line-height: 1.35rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--terra));
}

/* ============================================================
   SECTION SOLAIRE
   ============================================================ */
.solar-section { background: var(--bg); }
.solar-subtitle {
  position: relative;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 600;
  margin: 2.5rem 0 .5rem;
  padding-bottom: .5rem;
}
.solar-subtitle::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--amber), var(--terra));
}
.solar-intro { color: var(--text-soft); max-width: 720px; margin: 0 0 1.75rem; font-size: 1.1rem; }

.solar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.solar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.solar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-h);
  border-color: var(--amber);
}
.solar-icon { font-size: 2.25rem; line-height: 1; margin-bottom: .9rem; }
.solar-card h5 { font-size: 1.22rem; font-weight: 600; margin-bottom: .5rem; }
.solar-card p { color: var(--text-soft); font-size: 1.02rem; margin: 0; }

.solar-cta {
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.solar-cta p { max-width: 660px; margin: 0 auto 1.5rem; font-size: 1.18rem; color: var(--text); }

/* ============================================================
   BANDE DE MARQUE SOMBRE — graphique « Estruturas Metálicas »
   ============================================================ */
.brand-band { background: var(--ink); padding: clamp(3rem, 7vw, 5rem) 0; }
.brand-band img { display: block; width: 100%; max-width: 760px; margin: 0 auto; }

/* ============================================================
   GALERIE (grille + filtres)
   ============================================================ */
.gallery { position: relative; }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
  min-height: 44px;
  padding: .55rem 1.25rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.filter-btn:hover { border-color: var(--amber); color: var(--amber-dk); transform: translateY(-1px); }
.filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--terra));
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(152,110,42,.30);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-h);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-alt);
}
.gallery-item.is-hidden { display: none; }
.gallery-caption { padding: 1.1rem 1.25rem 1.35rem; }
.gallery-caption h4 { font-size: 1.18rem; font-weight: 600; margin: 0 0 .25rem; }
.gallery-caption h4 a { color: var(--text); }
.gallery-caption h4 a:hover { color: var(--amber); }
.gallery-caption p { color: var(--text-soft); font-size: 1rem; margin: 0; }
.gallery-item img { cursor: zoom-in; }
.gallery-error { grid-column: 1 / -1; text-align: center; color: var(--text-soft); }

/* Vue plein écran : la grille n'affiche que la vignette, l'image 1600 px
   n'est chargée qu'au clic. */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: rgba(23,23,23,.92);
  cursor: zoom-out;
}
.gallery-lightbox.is-open { display: flex; }
.gallery-lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.gallery-lightbox-close {
  position: absolute;
  top: .8rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ============================================================
   FORMULAIRE
   ============================================================ */
.form-group { margin-bottom: 0; }
.widget .form-group { margin-bottom: 1rem; }

.form-control {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-control::placeholder { color: var(--text-soft); opacity: .8; }
.form-control:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(192,138,62,.22);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.82);
}
.footer h3, .footer h4, .footer h5 { color: #fff; }
.footer p { color: rgba(255,255,255,.82); }
.footer a { color: #E5C07A; }
.footer a:hover { color: var(--amber); }
/* Image de marque, tout à droite du footer — alignée en haut (niveau de Faro) */
.footer-image-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
/* Desktop : image ancrée en haut-droite, au niveau de « Estoi-FARO » */
@media (min-width: 992px) {
  .footer-contact { position: relative; }
  .footer-contact .footer-image-col {
    position: absolute;
    top: 0;
    right: 20px;
    width: auto;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .footer-image-col { justify-content: flex-start; margin-top: 1.5rem; }
}

.footer .widget > p:first-child {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}
.footer form { margin-top: 1.25rem; }
.newsletter-widget p { margin-bottom: .5rem; }
.newsletter-widget img,
.footer img { display: inline-block; }

.copyrights {
  background: #1a1613;
  color: rgba(255,255,255,.7);
  padding: 1.5rem 0;
}
.copyrights a { color: #E5C07A; }
.copyrights .cop-logo img { height: 38px; width: auto; }
.wordmark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: .04em;
  color: #fff;
}
.wordmark em { font-style: normal; font-weight: 600; color: var(--amber); }
.copyrights .list-inline { list-style: none; margin: 0; padding: 0; }
.copyrights .list-inline li { display: inline-block; color: rgba(255,255,255,.7); }
.copyrights .text-right { text-align: right; }

/* ============================================================
   GRILLE CSS (sous-ensemble ex-Bootstrap réimplémenté)
   Bootstrap CSS étant retiré, ces règles portent la mise en page :
   #fazemos 3 col, formulaire 2 col, footer en colonnes — empilé en mobile.
   ============================================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row > [class*="col-"] {
  padding: 0 15px;
  width: 100%;
  min-width: 0; /* évite les débordements flex */
}
.justify-content-center { justify-content: center; }

/* ≥ tablette : colonnes -sm / -md */
@media (min-width: 768px) {
  .col-sm-4  { width: 33.3333%; }
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.3333%; }
  .col-md-6  { width: 50%; }
  .col-md-9  { width: 75%; }
  .col-md-12 { width: 100%; }
}
/* ≥ desktop : colonnes -lg */
@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.3333%; }
  .col-lg-6 { width: 50%; }
  .col-lg-9 { width: 75%; }
}
/* .col-xs-12 : pleine largeur par défaut (déjà via width:100% ci-dessus) */

/* ============================================================
   SÉLECTEUR DE LANGUE — dropdown à drapeaux (.lang-switch)
   ============================================================ */
.lang-switch { position: relative; }
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  padding: .35rem .85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.lang-current:hover { border-color: var(--amber); }
.lang-current:focus-visible { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(192,138,62,.25); outline: none; }
.lang-flag,
.lang-option img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(43,38,32,.12);
}
.lang-name { white-space: nowrap; }
.lang-caret { font-size: .7em; line-height: 1; opacity: .8; transition: transform .2s ease; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }

.lang-list {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 1200;
  min-width: 180px;
  margin: 0;
  padding: .35rem;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-h);
  display: none;
}
.lang-switch.open .lang-list { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .6rem;
  min-height: 44px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
  font-size: .98rem;
}
.lang-option:hover,
.lang-option:focus-visible { background: var(--bg-alt); outline: none; }
.lang-option[aria-selected="true"] { font-weight: 600; color: var(--amber-dk); }

/* Variante panneau mobile : pleine largeur, liste en flux */
.mobile-panel .lang-switch { width: 100%; margin-top: 1rem; }
.mobile-panel .lang-current { width: 100%; justify-content: space-between; min-height: 48px; }
.mobile-panel .lang-list {
  position: static;
  min-width: 0;
  box-shadow: none;
  margin-top: .5rem;
}
/* Le panneau mobile a un fond clair : forcer le style « surface » du bouton
   même quand le header est transparent (sinon blanc-sur-blanc en haut de page). */
.mobile-panel .lang-current,
.site-header:not(.scrolled) .mobile-panel .lang-current {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}
.site-header:not(.scrolled) .mobile-panel .lang-current .lang-name { color: var(--text); }

/* ============================================================
   LIENS SOCIAUX (footer)
   ============================================================ */
/* Drapeaux (langues) — pastilles alignées, cohérentes avec les réseaux */
.footer-flags {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .6rem 0 0;
}
.footer-flags img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
  display: block;
}

.social-links {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .6rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #E5C07A;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-links a:hover,
.social-links a:focus-visible {
  background: var(--amber);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   HELPERS
   ============================================================ */
.text-center { text-align: center; }
.clearfix::after { content: ""; display: table; clear: both; }

/* ============================================================
   RESPONSIVE (mobile-first ajustements)
   ============================================================ */
@media (max-width: 899px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { text-align: center; padding-top: calc(var(--header-h) + 1.5rem); }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-tagline { justify-content: center; }

  .solar-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

  .copyrights .text-right { text-align: center; margin-top: 1rem; }
}

@media (max-width: 575px) {
  .hero-title { font-size: clamp(2.1rem, 8.5vw, 2.7rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .solar-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: .45rem; }
  .filter-btn { font-size: .85rem; padding: .5rem 1rem; }
  .btn { width: 100%; }
  .hero-content .btn { width: auto; }
}
