/* =========================================================
   CAN CLOTA · LA PLANA · CAN CERVERA F.C. — Landing Page
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- Variables ---------- */
:root{
  --bg: #0a1730;
  --bg-alt: #0f1f3d;
  --surface: #142547;
  --surface-2: #1a2e54;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  --white: #f5f6f8;
  --muted: #a9b2c7;
  --muted-2: #7883a0;

  --orange: #e8641f;
  --orange-bright: #ff8438;
  --orange-dim: rgba(232,100,31,0.16);

  --green: #22c35e;
  --green-dim: rgba(34,195,94,0.14);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.65);
  --shadow-orange: 0 10px 30px -8px rgba(232,100,31,0.45);

  --ease: cubic-bezier(.16,.84,.44,1);
}

body{
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.eyebrow{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow.center{ text-align: center; }

.section-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.section-title.center{ text-align: center; }

.section-lead{
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
}
.section-lead.center{ margin: 0 auto; text-align: center; }

.text-orange{ color: var(--orange); }

section[class] { padding: 96px 0; position: relative; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: #1a0d04;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(232,100,31,0.55); }
.btn-ghost{
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--white);
}
.btn-ghost:hover{ border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-large{ padding: 18px 34px; font-size: 16px; }
.btn-small{ padding: 10px 20px; font-size: 13px; }
.btn-full{ width: 100%; }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.scrolled{
  padding: 12px 0;
  background: rgba(10,23,48,0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-crest{ width: 40px; height: 40px; object-fit: contain; }
.logo-text{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
}
.logo-text span{ color: var(--orange); }

.main-nav{
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link{
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s var(--ease);
}
.nav-link:hover{ color: var(--white); }
.nav-cta{ margin-left: 8px; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span{
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding-top: 90px;
  gap: 40px;
}
.hero-content{
  flex: 1 1 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 6vw 60px 24px;
  max-width: 640px;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero-subtitle{
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-trust{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.hero-media{
  flex: 1 1 46%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 6vw 20px 0;
}
.hero-crest-panel{
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: radial-gradient(circle at 30% 20%, rgba(232,100,31,0.22), transparent 55%), linear-gradient(160deg, var(--surface), var(--bg-alt) 70%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-stripes{
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(232,100,31,0.07) 0px, rgba(232,100,31,0.07) 2px, transparent 2px, transparent 34px);
  z-index: 0;
}
.hero-crest{
  position: relative;
  z-index: 1;
  width: 62%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.hero-badge{
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  background: rgba(10,23,48,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
}
.hero-badge-year{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--orange);
  line-height: 1;
}
.hero-badge-label{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Stats grid (About) ---------- */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 46px auto 60px;
}
.stat-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align: center;
}
.stat-number{
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label{
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---------- Pillars (About) ---------- */
.pillars-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.pillar-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.pillar-card:hover{ transform: translateY(-4px); border-color: var(--orange-dim); }
.pillar-icon{
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--orange-dim);
  color: var(--orange);
  margin-bottom: 20px;
}
.pillar-card h3{ font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.pillar-card p{ color: var(--muted); font-size: 14.5px; }

.pull-quote{
  border-left: 3px solid var(--orange);
  padding: 8px 0 8px 24px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
}

/* ---------- Team ---------- */
.team{ background: var(--bg-alt); }
.team-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 50px 0 50px;
}
.team-photo-placeholder{
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1.5px dashed var(--border-strong);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted-2);
}
.team-photo-placeholder span{ font-size: 13px; font-weight: 600; }

.ig-teaser{
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 34px;
  flex-wrap: wrap;
}
.ig-teaser-icon{
  width: 60px; height: 60px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--orange-dim);
  color: var(--orange);
}
.ig-teaser-body{ flex: 1 1 320px; }
.ig-teaser-body h3{ font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.ig-teaser-body p{ color: var(--muted); font-size: 14.5px; }

/* ---------- Sponsors ---------- */
.sponsors-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0 40px;
}
.sponsor-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 26px;
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.sponsor-card:hover{ transform: translateY(-4px); border-color: var(--orange-dim); }
.sponsor-logo-tile{
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 20px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sponsor-logo-tile img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sponsor-desc{ color: var(--muted); font-size: 14px; }

.sponsors-cta{
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.sponsors-cta p{ color: var(--muted); margin-bottom: 20px; font-size: 16px; }

/* ---------- Become a Sponsor ---------- */
.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0 60px;
}
.why-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.why-icon{
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--orange-dim);
  color: var(--orange);
  margin-bottom: 16px;
}
.why-card h3{ font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.why-card p{ color: var(--muted); font-size: 14px; }

.reach-panel{
  background: linear-gradient(160deg, var(--surface-2), var(--bg-alt) 75%);
  border: 1px solid var(--orange-dim);
  border-radius: var(--radius);
  padding: 48px;
  margin-bottom: 60px;
  text-align: center;
}
.reach-panel-head{ max-width: 720px; margin: 0 auto 40px; }
.reach-panel-head .eyebrow{ text-align: center; }
.reach-panel-head .section-title{ text-align: center; }
.reach-panel-head .section-lead{ margin: 0 auto; text-align: center; }
.reach-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto 34px;
}
.reach-stat{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
}
.reach-stat-value{
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 10px;
}
.reach-stat-label{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.reach-summary{
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.reach-disclaimer{
  max-width: 640px;
  margin: 0 auto;
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.6;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 70px;
}
.pricing-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pricing-card--featured{
  background: var(--surface-2);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: scale(1.03);
}
.pricing-badge{
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #1a0d04;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-badge--gold{ background: linear-gradient(135deg, #f0c14b, #d4af37); }
.pricing-head{ display: flex; flex-direction: column; gap: 4px; }
.pricing-tier{ font-family: var(--font-display); font-size: 30px; letter-spacing: 0.02em; }
.pricing-tagline{ font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.pricing-amount{ display: flex; align-items: baseline; gap: 8px; }
.pricing-value{ font-family: var(--font-display); font-size: 44px; color: var(--orange); line-height: 1; }
.pricing-period{ font-size: 13px; color: var(--muted-2); }
.pricing-list{ display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-list li{
  font-size: 14px;
  color: var(--white);
  padding-left: 24px;
  position: relative;
}
.pricing-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 1.5px solid var(--orange);
}
.pricing-ideal{ color: var(--muted-2); font-size: 13px; font-style: italic; }

.patrocinio-form-wrap{
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  scroll-margin-top: 100px;
}
.patrocinio-form-head{ text-align: center; margin-bottom: 30px; }
.patrocinio-form-head .eyebrow{ text-align: center; }
.patrocinio-form-head .section-title{ text-align: center; }
.patrocinio-form-head .section-lead{ margin: 0 auto; text-align: center; }

.form-alert{
  background: rgba(214,74,74,0.12);
  border: 1px solid rgba(214,74,74,0.4);
  color: #ff9b9b;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 22px;
}
.form-alert.success{
  background: var(--green-dim);
  border-color: rgba(34,195,94,0.4);
  color: #7fedaa;
}
.patrocinio-form{ display: flex; flex-direction: column; gap: 18px; }
.form-row{ display: flex; flex-direction: column; gap: 8px; }
.form-row-split{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label{ font-size: 13.5px; font-weight: 600; color: var(--muted); }
.form-row label span{ color: var(--orange); }
.form-row input, .form-row select, .form-row textarea{
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.form-row input.invalid, .form-row select.invalid, .form-row textarea.invalid{
  border-color: #d64a4a;
}
.form-row textarea{ resize: vertical; min-height: 100px; }
.form-row select{ appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9b2c7' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.form-microcopy{ text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 4px; }

.hp-field{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.contact-links{ display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.contact-link{
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-link:not(.contact-link--static):hover{ border-color: var(--orange); transform: translateX(4px); color: var(--orange); }
.contact-link svg{ color: var(--orange); flex-shrink: 0; }
.contact-link--static{ cursor: default; }

.contact-crest{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.contact-crest img{ width: 160px; }
.contact-crest-caption{ color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--bg-alt); border-top: 1px solid var(--border); padding-top: 60px; }
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p{ color: var(--muted); margin-top: 10px; font-size: 14px; }
.footer-nav{ display: flex; flex-wrap: wrap; gap: 24px; }
.footer-nav a, .footer-contact a{ color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s var(--ease); }
.footer-nav a:hover, .footer-contact a:hover{ color: var(--orange); }
.footer-contact{ display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-bottom{ padding: 24px; text-align: center; display: flex; flex-direction: column; gap: 6px; }
.footer-bottom p{ color: var(--muted-2); font-size: 13px; }
.footer-credit a{ color: var(--muted-2); text-decoration: underline; }
.footer-credit a:hover{ color: var(--orange); }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float{
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #22c35e;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(34,195,94,0.6);
  z-index: 90;
  animation: pulse-wa 2.6s ease-in-out infinite;
}
.whatsapp-float:hover{ transform: scale(1.08); }
@keyframes pulse-wa{
  0%, 100%{ box-shadow: 0 10px 30px -6px rgba(34,195,94,0.6); }
  50%{ box-shadow: 0 10px 30px -6px rgba(34,195,94,0.9), 0 0 0 10px rgba(34,195,94,0.12); }
}

/* ---------- Scroll reveal ---------- */
.reveal{ transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal{ opacity: 0; transform: translateY(28px); }
html.js .reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .hero{ flex-direction: column; min-height: auto; }
  .hero-content{ max-width: 100%; padding: 50px 24px 30px; }
  .hero-media{ padding: 0 24px 40px; order: -1; }
  .hero-crest-panel{ max-width: 340px; }

  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .pillars-grid{ grid-template-columns: 1fr; }
  .team-gallery{ grid-template-columns: repeat(2, 1fr); }
  .sponsors-grid{ grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .reach-panel{ padding: 36px 24px; }
  .reach-stats{ grid-template-columns: 1fr; max-width: 420px; }
  .pricing-grid{ grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured{ transform: none; }

  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 780px){
  section[class]{ padding: 70px 0; }

  .main-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .main-nav.open{ transform: translateX(0); }
  .nav-cta{ margin-left: 0; }
  .nav-toggle{ display: flex; }

  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ width: 100%; }

  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-gallery{ grid-template-columns: 1fr 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .form-row-split{ grid-template-columns: 1fr; }
  .patrocinio-form-wrap{ padding: 28px; }

  .footer-inner{ flex-direction: column; }
  .footer-contact{ align-items: flex-start; }

  .whatsapp-float{ width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px){
  .team-gallery{ grid-template-columns: 1fr 1fr; }
  .contact-crest{ padding: 32px 20px; }
}
