/* ============================================
   USA ASYLUM SERVICES - ESTILOS PRINCIPALES
   ============================================ */

/* === IMPORTAR FUENTES === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

/* === VARIABLES CSS === */
:root {
  /* Colores principales */
  --primary-red: #BF0A30;
  --primary-red-hover: #A00828;
  --primary-blue: #002868;
  --primary-blue-light: #003a8c;
  --white: #FFFFFF;

  /* Colores secundarios */
  --light-gray: #F5F5F5;
  --medium-gray: #E8E8E8;
  --text-gray: #333333;
  --text-light: #666666;
  --success-green: #28A745;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1DA851;

  /* Gradientes */
  --gradient-hero: linear-gradient(135deg, rgba(0, 40, 104, 0.85), rgba(191, 10, 48, 0.75));
  --gradient-cta: linear-gradient(135deg, #BF0A30, #D32F2F);
  --gradient-blue: linear-gradient(135deg, #002868, #004098);

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-sticky: 0 2px 20px rgba(0, 0, 0, 0.15);

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: var(--primary-blue);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul,
ol {
  list-style: none;
}

/* === UTILIDADES === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--gray {
  background-color: var(--light-gray);
}

.section--blue {
  background: var(--gradient-blue);
  color: var(--white);
}

.section--blue h2,
.section--blue h3 {
  color: var(--white);
}

.section--red {
  background: var(--gradient-cta);
  color: var(--white);
}

.section--red h2,
.section--red h3 {
  color: var(--white);
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section--blue .section-subtitle,
.section--red .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

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

/* === HEADER / NAVEGACIÓN === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  box-shadow: var(--shadow-sticky);
  border-bottom: 1px solid var(--medium-gray);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding var(--transition-normal);
}

.header.scrolled .header__inner {
  padding: 8px 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--primary-blue);
  z-index: 1001;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-cta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 800;
}

.header__logo span {
  color: var(--primary-red);
}

.header__nav {
  display: none;
}

.header__nav.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  padding: 100px 30px 40px;
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

.header__nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-gray);
  padding: 16px 0;
  border-bottom: 1px solid var(--medium-gray);
  transition: color var(--transition-fast);
}

.header__nav a:hover,
.header__nav a:active,
.header__nav a.active {
  color: var(--primary-red);
}

.header__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: white !important;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  border: none;
  white-space: nowrap;
}

.header__wa-btn:active {
  background: var(--whatsapp-hover);
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-gray);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* PLACEHOLDER: Reemplazar con imagen real */
  background: var(--gradient-hero);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 104, 0.75);
  z-index: -1;
}

.hero__content {
  max-width: 700px;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__counter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

.hero__counter strong {
  color: white;
}

/* === BOTONES === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  line-height: 1.3;
  min-height: 48px;
}

.btn--primary {
  background: var(--gradient-cta);
  color: white;
  box-shadow: 0 4px 16px rgba(191, 10, 48, 0.35);
}

.btn--primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(191, 10, 48, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn--secondary:active {
  background: var(--primary-blue);
  color: white;
}

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

.btn--whatsapp:active {
  background: var(--whatsapp-hover);
}

.btn--white {
  background: white;
  color: var(--primary-red);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--white:active {
  transform: scale(0.97);
}

.btn--large {
  padding: 16px 36px;
  font-size: 16px;
}

.btn__subtext {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 4px;
}

/* Trust indicators under button */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.trust-indicators span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trust-indicators--dark {
  color: var(--text-light);
}

/* === GRID DE ICONOS (Urgencia, etc.) === */
.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.icon-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.icon-card:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.icon-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 40, 104, 0.08), rgba(191, 10, 48, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
}

.icon-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.icon-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* === TARJETAS DE BENEFICIOS === */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.benefit-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--success-green);
  transition: box-shadow var(--transition-normal);
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--success-green);
}

.benefit-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.benefit-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* === TIMELINE / PASOS === */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--primary-red));
  border-radius: 2px;
}

.timeline__step {
  position: relative;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.timeline__step:last-child {
  margin-bottom: 0;
}

.timeline__number {
  position: absolute;
  left: -40px;
  top: 20px;
  width: 34px;
  height: 34px;
  background: var(--gradient-cta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(191, 10, 48, 0.3);
}

.timeline__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.timeline__icon {
  font-size: 20px;
  margin-right: 6px;
}

.timeline__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.timeline__details {
  margin-top: 10px;
  padding-left: 0;
}

.timeline__details li {
  font-size: 14px;
  color: var(--text-light);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.timeline__details li::before {
  content: '•';
  color: var(--primary-red);
  font-weight: 700;
  flex-shrink: 0;
}

/* === TESTIMONIOS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 80px;
  font-family: 'Montserrat', sans-serif;
  color: rgba(0, 40, 104, 0.06);
  line-height: 1;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-card__photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--medium-gray);
  /* PLACEHOLDER: Reemplazar con foto real */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-light);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-blue);
}

.testimonial-card__origin {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-card__stars {
  color: #FFC107;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-card__text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  font-style: italic;
}

/* === GALERÍA ANTES/DESPUÉS === */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.gallery-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-card__before,
.gallery-card__after {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-card__before {
  background: rgba(191, 10, 48, 0.05);
  border-right: 2px solid var(--medium-gray);
}

.gallery-card__after {
  background: rgba(40, 167, 69, 0.05);
}

.gallery-card__icon {
  font-size: 36px;
  margin-bottom: 4px;
}

.gallery-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.gallery-card__before .gallery-card__label {
  background: rgba(191, 10, 48, 0.1);
  color: var(--primary-red);
}

.gallery-card__after .gallery-card__label {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success-green);
}

.gallery-card__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
}

.gallery-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-blue);
  color: white;
  width: 32px;
  flex-shrink: 0;
  font-size: 16px;
}

/* === CALCULADORA DE ELEGIBILIDAD === */
.calculator {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-md);
}

.calculator__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.calculator__item:last-of-type {
  border-bottom: none;
}

.calculator__checkbox {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--medium-gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 2px;
}

.calculator__item.checked .calculator__checkbox {
  background: var(--success-green);
  border-color: var(--success-green);
  color: white;
}

.calculator__label {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

.calculator__result {
  display: none;
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.calculator__result.show {
  display: block;
}

.calculator__result--positive {
  background: rgba(40, 167, 69, 0.08);
  border: 2px solid rgba(40, 167, 69, 0.2);
}

.calculator__result--neutral {
  background: rgba(0, 40, 104, 0.06);
  border: 2px solid rgba(0, 40, 104, 0.15);
}

.calculator__result-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.calculator__result-text {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* === FAQ ACORDEÓN === */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  background: var(--primary-red);
  color: white;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item__answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

.faq-item__answer-inner strong {
  color: var(--text-gray);
}

/* === TARJETAS DE SERVICIOS === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-blue);
  transition: transform var(--transition-normal);
}

.service-card--featured {
  border-top-color: var(--success-green);
  position: relative;
  overflow: hidden;
}

.service-card--featured::after {
  content: '  ⭐ MÁS POPULAR';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--success-green);
  color: white;
  padding: 4px 40px;
  font-size: 10px;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

.service-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.service-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.service-card__desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-card__list {
  padding: 0;
}

.service-card__list li {
  font-size: 14px;
  color: var(--text-gray);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card__list li::before {
  content: '✓';
  color: var(--success-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* === RECURSOS DESCARGABLES === */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition-normal);
}

.resource-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(191, 10, 48, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.resource-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.resource-card__desc {
  font-size: 13px;
  color: var(--text-light);
}

.resource-card__download {
  margin-left: auto;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

/* === MITOS VS REALIDADES === */
.myths-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.myth-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.myth-card__myth {
  padding: 14px 16px;
  background: rgba(191, 10, 48, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--primary-red);
  font-weight: 600;
  border-left: 4px solid var(--primary-red);
}

.myth-card__reality {
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--success-green);
  font-weight: 600;
  border-left: 4px solid var(--success-green);
  background: rgba(40, 167, 69, 0.04);
}

/* === BADGES DE CONFIANZA === */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trust-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-badge__icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.trust-badge__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.trust-badge__text {
  font-size: 12px;
  color: var(--text-light);
}

/* === CONTACTO === */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.contact-card__phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.contact-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-card__divider {
  border: none;
  border-top: 1px solid var(--medium-gray);
  margin: 20px 0;
}

.contact-card__info {
  text-align: left;
}

.contact-card__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-card__info-item:last-child {
  border-bottom: none;
}

.contact-card__info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card__info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.contact-card__info-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* === CONSULTA GRATIS === */
.consult-list {
  max-width: 500px;
  margin: 0 auto;
}

.consult-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-gray);
}

.consult-item::before {
  content: '✓';
  color: var(--success-green);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.consult-meta {
  text-align: center;
  margin-top: 20px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
}

.consult-meta strong {
  display: block;
  color: var(--primary-blue);
}

/* === GARANTÍAS === */
.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.guarantee-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.guarantee-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(0, 40, 104, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.guarantee-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.guarantee-card__text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* === NOTA IMPORTANTE === */
.important-note {
  background: rgba(0, 40, 104, 0.04);
  border: 1px solid rgba(0, 40, 104, 0.12);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

.important-note strong {
  color: var(--primary-blue);
}

/* === PÁGINA HEADER (páginas interiores) === */
.page-hero {
  padding: 110px 20px 50px;
  text-align: center;
  background: var(--gradient-blue);
  color: white;
}

.page-hero h1 {
  color: white;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  background: #0A0F1A;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 20px 100px;
  text-align: center;
}

.footer__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.footer__logo span {
  color: var(--primary-red);
}

.footer__text {
  font-size: 13px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 20px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__links a:hover,
.footer__links a:active {
  color: white;
}

.footer__disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 500px;
  margin: 16px auto 0;
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copyright {
  font-size: 12px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.35);
}

/* === BOTÓN FLOTANTE WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform var(--transition-fast);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:active {
  transform: scale(0.92);
}

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

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-gray);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

/* === ANIMACIONES === */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE - TABLET (769px+)
   ============================================ */
@media (min-width: 769px) {
  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .container {
    padding: 0 40px;
  }

  /* Header */
  .header__inner {
    padding: 16px 40px;
  }

  .header__hamburger {
    display: none;
  }

  .header__nav {
    display: flex !important;
    align-items: center;
    gap: 28px;
    position: static;
    height: auto;
    background: none;
    padding: 0;
    animation: none;
  }

  .header__nav a {
    font-size: 14px;
    padding: 0;
    border-bottom: none;
  }

  .header__logo {
    font-size: 18px;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
    padding: 120px 40px 80px;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  /* Grids */
  .icon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .myths-list {
    grid-template-columns: 1fr 1fr;
  }

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

  /* Page hero */
  .page-hero {
    padding: 140px 40px 60px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p {
    font-size: 18px;
  }

  /* Footer */
  .footer {
    padding-bottom: 40px;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP (1025px+)
   ============================================ */
@media (min-width: 1025px) {
  .section-title {
    font-size: 36px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-badges {
    grid-template-columns: repeat(6, 1fr);
  }

  .whatsapp-float {
    bottom: 32px;
    right: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === ENLACES DE INTERÉS === */
.official-links {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--medium-gray);
}

.official-links__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 8px;
}

.official-links__subtitle {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 32px;
}

.official-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.official-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  border: 1px solid var(--medium-gray);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.official-link:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.official-link__logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.official-link__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.3;
}

.official-link__url {
  font-size: 11px;
  color: var(--text-light);
  word-break: break-all;
}

@media (min-width: 769px) {
  .official-links__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .official-links__title {
    font-size: 22px;
  }

  .official-link {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
  }

  .official-link__logo {
    width: 56px;
    height: 56px;
  }
}