/* =============================================
   INJURED UNITED - Main Stylesheet
   css/style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Vollkorn:wght@400;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      rgb(14, 44, 53);    /* color títulos */
  --white:      #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid:   #e0e0e0;
  --gray-text:  rgb(57, 89, 99);    /* color textos */
  --gold:       #b99e5a;
  --gold-hover: #a08848;
  --teal:       rgb(14, 44, 53);    /* color títulos = mismo que --black */
  --teal-dark:  #0a2028;
  --font:        'Satoshi', sans-serif;
  --font-serif:  'Vollkorn', serif;
  --max:         1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 92px;
  padding: 0 48px 0 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #083842;
}

.navbar-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-logo img {
  height: 88px;
  max-height: 100%;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}

.navbar-links a,
.navbar-links a:visited {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.navbar-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-links li:last-child {
  margin-left: 14px;
}

.navbar-cta {
  min-height: 54px;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.62) !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  transition: background 0.2s, border-color 0.2s;
}

.navbar-cta:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
  opacity: 1 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  margin-top: 94px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #083842;
  margin-top: 92px !important;
  min-height: calc(100vh - 92px) !important;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.82);
  display: block;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22%;
  width: 36%;
  background: linear-gradient(
    90deg,
    #083842 0%,
    rgba(8, 56, 66, 0.96) 18%,
    rgba(8, 56, 66, 0.84) 34%,
    rgba(8, 56, 66, 0.58) 55%,
    rgba(8, 56, 66, 0.22) 78%,
    rgba(8, 56, 66, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 560px;
  margin-left: clamp(54px, 15vw, 280px);
  padding: 0;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 94px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 480px;
  margin-bottom: 26px;
}

.hero-content p {
  max-width: 610px;
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-gold,
.btn-phone {
  min-height: 62px;
  padding: 0 24px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold {
  background: #c4a454;
  color: #fff;
}
.btn-gold:hover { background: #ae9048; }

.btn-phone {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
}
.btn-phone:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

/* ===========================================
   STATS BAR
   =========================================== */
.stats-bar {
  background: var(--white);
  padding: 60px 70px;
  border-bottom: 1px solid var(--gray-mid);
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1px;
}

.stat-item h2 {
  font-family: var(--font-serif);
  color: var(--black);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.stat-item p {
  color: var(--gray-text);
  font-size: 1.1rem;
  letter-spacing: 0;
}

/* ===========================================
   SECCIÓN GENÉRICA
   =========================================== */
section { padding: 90px 40px; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 16px;
}

/* ===========================================
   PROTECTING YOUR RIGHTS
   =========================================== */
.protect-section {
  background: rgb(243, 248, 249);
  overflow: hidden;
}

.protect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.protect-text .section-label {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #b99e5a !important;
  margin-bottom: 12px;
  display: block;
}

.protect-text h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.protect-text p {
  color: var(--gray-text);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.btn-dark {
  background: rgb(23, 80, 97);
  color: var(--white);
  padding: 20px 36px;
  border-radius: 0;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
  display: inline-block;
}
.btn-dark:hover { background: rgb(18, 65, 80); }

.protect-img {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-top: 40px;
}

.protect-img::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 85%;
  height: 90%;
  background: rgb(142, 159, 163);
  z-index: 0;
}

.protect-img img {
  position: relative;
  z-index: 1;
  width: 85%;
  height: 490px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.protect-text,
.protect-img {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.protect-text.visible,
.protect-img.visible {
  opacity: 1;
  transform: translateY(0);
}
.protect-img { transition-delay: 0.2s; }

/* ===========================================
   PRACTICE AREAS
   =========================================== */
.practice-section { background: var(--white); }

.practice-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  text-align: center;
  color: var(--black);
}

.practice-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px 120px;
  max-width: 860px;
  margin: 0 auto;
}

.practice-card:nth-child(4),
.practice-card:nth-child(5) {
  grid-column: unset;
  justify-self: unset;
  margin: 0;
}

.practice-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s;
  cursor: default;
  width: 200px;
}
.practice-card:hover { transform: translateY(-4px); }

.practice-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  background: var(--gold);
  border-radius: 50%;
  padding: 18px;
}

.practice-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 550;
  color: var(--black);
  text-align: center;
}

/* ===========================================
   CTA BANNER
   =========================================== */
.cta-banner {
  background: #083842;
  padding: 48px 70px;
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner h2 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.btn-white {
  background: var(--gold);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 0;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-white:hover { background: var(--gold-hover); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 15px 24px;
  border-radius: 0;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ===========================================
   REVIEWS
   =========================================== */
.reviews-section { background: var(--white); text-align: center; }

.reviews-section .section-label {
  color: #b99e5a !important;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
  display: block;
}

.reviews-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 56px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.review-card {
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-quote {
  color: #b99e5a;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -2px;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--gray-text);
  flex: 1;
}

.review-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background: #083842;
  padding: 64px 70px 40px;
  color: var(--white);
}

.footer-inner { max-width: var(--max); margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 32px;
  align-items: start;
}

.footer-col-logo img { height: 110px; width: auto; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-col-contact p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 8px;
}
.footer-col-contact a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  display: block;
  line-height: 1.9;
  transition: color 0.2s;
}
.footer-col-contact a:hover { color: white; }

.footer-col-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a { color: rgba(255,255,255,0.85); font-size: 0.95rem; transition: color 0.2s; }
.footer-col-links a:hover { color: white; }

.footer-bottom {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  text-align: center;
}

/* ===========================================
   PAGE HERO (páginas internas)
   =========================================== */
.page-hero {
  background: #083842;
  padding: 160px 70px 80px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5em);
  font-weight: 550;
  letter-spacing: -0.02em;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================
   YOUR TEAM
   =========================================== */
.team-section { background: var(--gray-light); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }

.team-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-mid); transition: box-shadow 0.2s; }
.team-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.team-card img { width: 100%; height: 320px; object-fit: cover; object-position: top center; }
.team-card-body { padding: 28px; }
.team-card-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.team-card-body .role { color: var(--gray-text); font-size: 0.85rem; margin-bottom: 20px; }

/* ===========================================
   LOCATIONS
   =========================================== */
.states-section {
  background: rgb(236, 243, 244);
  padding: 80px 70px;
}

.states-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.state-item img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

.state-item h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  text-align: center;
}

.why-section {
  background: var(--white);
  padding: 90px 70px;
}

.why-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 24px;
}

.why-left p {
  color: var(--gray-text);
  font-size: 1.15rem;
  line-height: 1.75;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 64px;        /* ← de 52px a 64px */
  height: 64px;       /* ← de 52px a 64px */
  min-width: 64px;    /* ← de 52px a 64px */
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 32px;        /* ← de 24px a 32px */
  height: 32px;       /* ← de 24px a 32px */
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.why-item-text h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;  /* ← de 1.1rem a 1.3rem */
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.why-item-text p {
  color: var(--gray-text);
  font-size: 1.05rem; /* ← de 0.95rem a 1.05rem */
  line-height: 1.65;
}

.where-section {
  background: rgb(236, 243, 244);
  padding: 90px 70px;
  text-align: center;
}

.where-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.where-label {
  color: #b99e5a;
  font-size: 1.20rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.where-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}

.where-mailing {
  font-size: 1.05rem;    /* ← de 0.95rem a 1.05rem */
  color: var(--black);
  line-height: 1.8;
  margin-bottom: 60px;
}
.where-mailing strong { font-weight: 700; }

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.office-card {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.office-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;     /* ← de 1.4rem a 1.7rem */
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.office-card address {
  font-style: normal;
  color: var(--gray-text);
  font-size: 1.05rem;    /* ← de 0.95rem a 1.05rem */
  line-height: 1.9;
}

.office-card .appt-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 6px;
  font-style: italic;
  display: block;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-hero {
  position: relative;
  background: #083842;
  padding: 145px 24px 62px;
  text-align: center;
  overflow: visible;
}

.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-weight: 550;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  line-height: 1;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1.55;
  max-width: 690px;
  margin: 0 auto 68px;
}

.contact-form-box {
  position: relative;
  z-index: 3;
  background: rgb(207, 214, 216);
  width: min(100%, 530px);
  margin: 0 auto -225px;
  padding: 46px 48px 54px;
}

.contact-form-box form {
  width: 100%;
}

.contact-form-box .form-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form-box label {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  color: #738187;
  letter-spacing: 0;
  text-align: left;
}

.contact-form-box input,
.contact-form-box select {
  width: 100%;
  height: 38px;
  padding: 0 14px;
  background: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: #4f5b60;
  outline: none;
  appearance: none;
  box-shadow: none;
}

.contact-form-box input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.contact-form-box input:focus,
.contact-form-box select:focus {
  border-color: #45a7ff;
  background: #ffffff;
}

.select-wrap {
  position: relative;
  width: 100%;
}

.select-wrap::after {
  content: '⌄';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-52%);
  color: #8a9498;
  font-size: 1rem;
  pointer-events: none;
}

.select-wrap select {
  padding-right: 38px;
}

.contact-submit {
  width: 100%;
  height: 38px;
  border: none;
  border-radius: 9px;
  background: #2f2f31;
  color: #ffffff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease;
}

.contact-submit:hover {
  background: #232325;
}

.contact-info-section {
  background: #f7f7f7;
  padding: 210px 70px 90px;
}

.contact-info-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
}

.contact-info-col .info-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #44616d;
}

.contact-info-col p,
.contact-info-col address {
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #173947;
}

.contact-info-col a {
  color: #173947;
  font-size: 1.08rem;
}

.contact-info-col a:hover {
  text-decoration: none;
}

/* ===========================================
   ATTORNEY PROFILE
   =========================================== */
.profile-section { background: var(--white); }
.profile-layout { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
.profile-photo { position: sticky; top: 130px; }
.profile-photo img { width: 100%; border-radius: 20px; object-fit: cover; aspect-ratio: 3/4; }
.profile-name-block { display: none; }
.profile-name-block h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.profile-name-block .profile-role { color: var(--gray-text); font-size: 0.9rem; margin-bottom: 20px; }
.profile-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 24px; color: var(--black); }
.profile-content p  { color: var(--gray-text); font-size: 1.15rem; line-height: 1.85; margin-bottom: 20px; }
.profile-content h3 { font-size: 1.15rem; font-weight: 700; margin-top: 40px; margin-bottom: 14px; color: var(--black); }
.profile-content ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.profile-content ul li {
  font-size: 1.1rem;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;   /* necesario para que el ::before se posicione bien */
}
.profile-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gray-text); /* mismo color que el texto */
  font-size: 1.4rem;        /* más grande que el texto para que se vea bien */
  font-weight: 700;
  line-height: 1.5;         /* alinea verticalmente con el texto */
}
.profile-back { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-text); font-size: 0.88rem; font-weight: 500; margin-bottom: 48px; transition: color 0.2s; }
.profile-back:hover { color: var(--black); }
.profile-back::before { content: '←'; }

/* ===========================================
   LEGAL
   =========================================== */
.legal-section { max-width: 780px; margin: 0 auto; }
.legal-section h2 { font-size: 1.4rem; font-weight: 700; margin-top: 48px; margin-bottom: 16px; color: var(--black); }
.legal-section p  { color: var(--gray-text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 900px) {
  .protect-grid    { grid-template-columns: 1fr; gap: 40px; }
  .protect-img     { display: none; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout  { grid-template-columns: 1fr; gap: 48px; }
  .team-grid       { grid-template-columns: 1fr; }
  .stats-inner     { gap: 32px; }
  .profile-layout  { grid-template-columns: 1fr; gap: 40px; }
  .profile-photo   { position: static; }
  .profile-photo img { aspect-ratio: 4/3; height: 320px; }
  .states-inner    { grid-template-columns: 1fr; }
  .why-inner       { grid-template-columns: 1fr; gap: 48px; }
  .offices-grid    { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 64px 24px; }

  .navbar { height: 74px; padding: 0 20px; }
  .navbar-logo img { height: 54px; }

  .page-hero { padding: 100px 24px 60px; }
  footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 60px 24px; }
  .stats-bar { padding: 40px 24px; }

  .states-section,
  .why-section,
  .where-section { padding: 64px 24px; }

  .hero { margin-top: 74px !important; min-height: 74vh; align-items: center; }

  .hero-bg { width: 100%; right: 0; object-position: 60% center; filter: brightness(0.5); }

  .hero::after {
    left: 0; width: 100%;
    background:
      linear-gradient(90deg, rgba(8,56,66,0.82) 0%, rgba(8,56,66,0.5) 45%, rgba(8,56,66,0.2) 100%),
      linear-gradient(180deg, rgba(8,56,66,0.22) 0%, rgba(8,56,66,0.48) 100%);
  }

  .hero-content { margin-left: 24px; margin-right: 24px; max-width: 340px; }
  .hero-content h1 { font-size: clamp(3.1rem, 13vw, 4.8rem); max-width: 320px; margin-bottom: 20px; }
  .hero-content p { max-width: 320px; font-size: 15px; line-height: 1.65; margin-bottom: 28px; }

  .btn-gold, .btn-phone { min-height: 56px; padding: 0 20px; }

  .navbar-links {
    display: none; position: fixed; top: 74px; left: 0; right: 0;
    background: #083842; flex-direction: column;
    padding: 24px 20px 28px; gap: 20px; align-items: flex-start;
  }
  .navbar-links li:last-child { margin-left: 0; }
  .navbar-links.open { display: flex; }
  .hamburger { display: flex; }

  /* ↓↓↓ FIXES NUEVOS ↓↓↓ */

  /* Evita scroll horizontal */
  body { overflow-x: hidden; }

  /* Stats — 1 columna */
  .stats-inner { grid-template-columns: 1fr; gap: 16px; }
  .stat-item h2 { font-size: 1.6rem; }
  .stat-item p  { font-size: 0.95rem; }

  /* CTA banner — apilar en columna */
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn-white, .btn-outline-white { width: 100%; justify-content: center; }

  /* Footer links — menos espacio */
  .footer-col-links ul { gap: 6px; }
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 118px 20px 80px;
  }

  .contact-form-box {
    width: min(100%, 520px);
    margin: 0 auto -120px;
    padding: 28px 22px 34px;
  }

  .contact-info-section {
    padding: 160px 24px 60px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}