/* ============================================================
   TUS DERECHOS LABORALES – Stylesheet
   California Workers' Compensation – Spanish Language Site
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --primary:       #C8392B;   /* warm red – strength, urgency */
  --primary-dark:  #A62D21;
  --primary-light: #E85444;
  --secondary:     #E07B2E;   /* warm amber – warmth, trust */
  --accent:        #F5A623;   /* golden yellow – optimism */
  --green:         #27AE60;   /* success, positive */
  --dark:          #1A1A2E;
  --dark-2:        #16213E;
  --text:          #2C3E50;
  --text-light:    #5D6D7E;
  --bg-warm:       #FDF6F0;   /* warm off-white */
  --bg-light:      #FFFFFF;
  --bg-dark:       #1A1A2E;
  --whatsapp:      #25D366;
  --whatsapp-dark: #128C7E;
  --border:        #E8DDD4;

  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;

  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow:        0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.18);
  --shadow-xl:     0 16px 60px rgba(0,0,0,.24);

  --transition:    .25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section { padding: 80px 0; }

.section-light  { background: var(--bg-light); }
.section-warm   { background: var(--bg-warm); }
.section-dark   { background: var(--bg-dark); color: #fff; }
.section-alert  { background: linear-gradient(135deg, #FFF3CD 0%, #FFE082 100%); }
.section-inclusive { background: linear-gradient(135deg, #1B4F72 0%, #154360 100%); color: #fff; }
.section-testimonials { background: var(--dark); color: #fff; }
.section-final-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; }

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header h2 em {
  font-style: normal;
  color: var(--primary);
}

.section-header-light h2 { color: #fff; }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}

.section-header-light .section-subtitle { color: rgba(255,255,255,.8); }

.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(200,57,43,.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.tag-light {
  color: #fff;
  background: rgba(255,255,255,.2);
}

.tag-alert {
  color: #7B5200;
  background: rgba(123,82,0,.12);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,57,43,.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,57,43,.5);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
}

.btn-large {
  padding: 18px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-xl {
  padding: 20px 40px;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
}

.btn-icon { font-size: 1.4rem; }

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.btn-label {
  font-size: .8rem;
  font-weight: 500;
  opacity: .9;
  letter-spacing: .02em;
}

.btn-number {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

/* Pulse animation for primary CTA */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(200,57,43,.5); }
  70%  { box-shadow: 0 0 0 20px rgba(200,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,57,43,0); }
}

.pulse { animation: pulse-ring 2.5s infinite; }

/* ── Sticky Header ── */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { font-size: 1.6rem; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
}

.logo-sub {
  font-weight: 600;
  font-size: .75rem;
  color: var(--text-light);
  letter-spacing: .05em;
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(200,57,43,.3);
}

.header-phone-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.phone-icon { font-size: 1rem; }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 68px;
  background:
    linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(200,57,43,.85) 50%, rgba(26,26,46,.95) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: cover, 60px 60px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,26,46,.7) 0%,
    rgba(200,57,43,.5) 50%,
    rgba(26,26,46,.9) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 100px;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-title .highlight {
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.95);
  font-size: .95rem;
  font-weight: 500;
}

.trust-icon { font-size: 1rem; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.scroll-arrow {
  animation: bounce 1.8s ease-in-out infinite;
  font-size: 1.1rem;
}

/* ── Urgency Banner ── */
.urgency-banner {
  background: var(--primary-dark);
  color: #fff;
  padding: 16px 0;
  font-size: .95rem;
}

.urgency-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: center;
}

.urgency-icon { font-size: 1.1rem; }

.urgency-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

.urgency-link:hover { opacity: .85; }

/* ── Cards Grid ── */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.card-warm {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.card-warm:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(200,57,43,.12);
  transform: translateY(-4px);
}

.card-icon { font-size: 2.4rem; margin-bottom: 16px; }

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.card p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.6;
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ── Benefits Grid ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(200,57,43,.2);
}

.benefit-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,57,43,.08);
  border-radius: var(--radius);
}

.benefit-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Injuries Section ── */
.injuries-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.injury-category {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.injury-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bg-warm);
}

.injury-icon-big {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  background: rgba(200,57,43,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.injury-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.injury-header p {
  font-size: .85rem;
  color: var(--text-light);
}

.injury-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-warm);
  font-size: .92rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.injury-list li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.injury-list li:last-child { border-bottom: none; }

.injury-note {
  background: rgba(200,57,43,.06);
  border: 1px solid rgba(200,57,43,.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.note-icon { font-size: 1.3rem; flex-shrink: 0; }

.injury-note p { font-size: .95rem; color: var(--text); }

/* ── Steps Section ── */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200,57,43,.4);
}

.step-content {
  padding: 12px 0 32px;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-content p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.65;
}

.step-connector {
  width: 56px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.step-connector::before {
  content: '';
  display: block;
  width: 2px;
  height: 40px;
  background: rgba(200,57,43,.4);
  margin-top: -20px;
}

/* ── Deadlines ── */
.deadlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.deadline-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.deadline-card:hover { transform: translateY(-4px); }

.deadline-urgent {
  background: rgba(200,57,43,.12);
  border-color: var(--primary);
}

.deadline-moderate {
  background: rgba(224,123,46,.12);
  border-color: var(--secondary);
}

.deadline-info {
  background: rgba(39,174,96,.1);
  border-color: var(--green);
}

.deadline-extra {
  background: rgba(44,62,80,.08);
  border-color: var(--text-light);
}

.deadline-time {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1;
}

.deadline-urgent .deadline-time { color: var(--primary); }
.deadline-moderate .deadline-time { color: var(--secondary); }
.deadline-info .deadline-time { color: var(--green); }

.deadline-desc {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}

.deadline-cta {
  text-align: center;
}

.deadline-cta p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Inclusive Section ── */
.inclusive-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.inclusive-icon {
  font-size: 3rem;
  text-align: center;
  writing-mode: vertical-rl;
  letter-spacing: .2em;
}

.inclusive-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.highlight-green { color: #4ADE80; }

.inclusive-content > p {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.inclusive-list {
  margin-bottom: 32px;
}

.inclusive-list li {
  padding: 10px 0;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inclusive-list li:last-child { border-bottom: none; }

.inclusive-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FAQ ── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(200,57,43,.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-item.open .faq-question { color: var(--primary); }

.faq-arrow {
  color: var(--primary);
  font-size: .75rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: .95rem;
}

.testimonial-author span {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  margin-top: 2px;
}

/* ── Final CTA ── */
.final-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.final-cta-inner > p {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-cta-primary {
  background: #fff;
  color: var(--primary);
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn-cta-primary:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.btn-cta-primary span:first-child { font-size: 1.6rem; }
.btn-cta-primary div { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.btn-cta-primary strong { font-size: 1rem; font-weight: 800; }
.btn-cta-primary span:last-child { font-size: 1.2rem; font-weight: 700; }

.btn-cta-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
}

.btn-cta-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,.45);
}

.btn-cta-whatsapp span:first-child { font-size: 1.6rem; }
.btn-cta-whatsapp div { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.btn-cta-whatsapp strong { font-size: 1.1rem; font-weight: 800; }
.btn-cta-whatsapp span:last-child { font-size: .9rem; opacity: .9; }

.cta-disclaimer {
  color: rgba(255,255,255,.7) !important;
  font-size: .9rem !important;
  margin-bottom: 0 !important;
}

/* ── Footer ── */
.footer {
  background: #0D0D1A;
  color: rgba(255,255,255,.8);
  padding: 56px 0 80px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
}

.footer-logo div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-main {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.footer-logo-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary); }

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--accent); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimer p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: all var(--transition);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.7);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: rgba(0,0,0,.8);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float { animation: wa-pulse 2.8s infinite; }

/* ── Sticky Phone Bar (Mobile) ── */
.sticky-phone-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: none;
  background: #fff;
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}

.sticky-phone-call,
.sticky-phone-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  text-decoration: none;
}

.sticky-phone-call {
  background: var(--primary);
  color: #fff;
}

.sticky-phone-call:hover { background: var(--primary-dark); }

.sticky-phone-call div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sticky-phone-call strong { font-size: .8rem; font-weight: 800; line-height: 1; }
.sticky-phone-call span  { font-size: .7rem; opacity: .9; }

.sticky-phone-wa {
  background: var(--whatsapp);
  color: #fff;
}

.sticky-phone-wa:hover { background: var(--whatsapp-dark); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }

  .hero-ctas { flex-direction: column; align-items: center; }

  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }

  .inclusive-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .inclusive-icon {
    writing-mode: horizontal-tb;
    font-size: 2rem;
    letter-spacing: .1em;
  }

  .inclusive-ctas { justify-content: center; }

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

  .benefit-card { flex-direction: column; gap: 14px; }

  .injuries-container { grid-template-columns: 1fr; }

  .deadlines-grid { grid-template-columns: repeat(2, 1fr); }

  .final-cta-buttons { flex-direction: column; align-items: center; }

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

  .header-phone-btn span:not(.phone-icon) { display: none; }

  .sticky-phone-bar { display: flex; }

  .whatsapp-float { bottom: 80px; }

  .footer-links { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

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

  .step { flex-direction: column; gap: 12px; }

  .step-connector { width: 100%; }

  .step-connector::before {
    width: 100%;
    height: 2px;
    margin-top: 0;
  }

  .btn-xl { padding: 16px 24px; font-size: 1rem; }
}

/* ── Scroll reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
