/* ==========================================
   PALETA DE COLORES JHROYETT
   ========================================== */
:root {
  --color-primary: #2a275d;
  --color-secondary: #444091;
  --color-accent-1: #5269b2;
  --color-accent-2: #628ecc;
  --color-accent-3: #71b5e2;
  --color-accent-4: #7bceef;
  --color-light: #84e9f7;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;

  /* Fuentes - ACTUALIZADAS A ARCHIVO */
  --font-heading: "Archivo", sans-serif;
  --font-body: "Archivo", sans-serif;
}

/* ==========================================
   RESET Y ESTILOS GENERALES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ==========================================
   SCROLL MARGIN TOP — Fix forced reflow
   Compensa la altura del navbar fijo (75px)
   para que scrollIntoView() no tape el contenido.
   Antes este offset lo calculaba JS con
   target.offsetTop - 80, lo que forzaba un
   reflow de 63ms en cada click de navegación.
   Ahora el motor de layout lo resuelve
   internamente sin coste adicional.
   ========================================== */
#home,
#problems,
#about,
#benefits,
#services,
#testimonials,
#agendar {
  scroll-margin-top: 80px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar-custom {
  background: var(--color-white);
  padding: 0;
  box-shadow: 0 2px 25px rgba(42, 39, 93, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  height: 75px;
}

.navbar-custom.scrolled {
  height: 65px;
  box-shadow: 0 4px 30px rgba(42, 39, 93, 0.12);
}

.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  padding: 0;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled .navbar-logo {
  height: 40px;
}

/* ==========================================
   CONTACTO EN NAV
   ========================================== */
.navbar-contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.navbar-contact__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-accent-4)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(113, 181, 226, 0.35);
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.navbar-contact:hover .navbar-contact__icon {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(113, 181, 226, 0.45);
}

.navbar-contact__icon i {
  color: var(--color-white);
  font-size: 0.95rem;
}

.navbar-contact__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-contact__label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-contact__number {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-contact__number:hover {
  color: var(--color-accent-3);
}

/* ==========================================
   RESPONSIVE — MÓVIL
   ========================================== */
@media (max-width: 575px) {
  .navbar-custom {
    height: 65px;
  }

  .navbar-logo {
    height: 38px;
  }

  .navbar-contact__label {
    display: none;
  }

  .navbar-contact__number {
    font-size: 0.88rem;
  }

  .navbar-contact__icon {
    width: 34px;
    height: 34px;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  background: linear-gradient(
    135deg,
    #1a1845 0%,
    var(--color-primary) 30%,
    var(--color-secondary) 60%,
    var(--color-accent-1) 100%
  );
  min-height: calc(100vh - 140px);
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ==========================================
   CONTENIDO IZQUIERDO
   ========================================== */
.hero-text {
  color: var(--color-white);
  padding-right: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.hero-badge i {
  margin-right: 0.6rem;
  color: var(--color-light);
  font-size: 1.1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--color-white);
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-title .highlight {
  color: var(--color-light);
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
}

/* ==========================================
   CTA
   ========================================== */
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.btn-primary {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-light),
    var(--color-accent-4)
  );
  color: var(--color-primary);
  border: none;
  box-shadow: 0 4px 15px rgba(132, 233, 247, 0.4);
}

.btn-primary:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(132, 233, 247, 0.5);
}

.hero-micro-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  padding: 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
  width: 100%;
  max-width: 320px;
}

/* ==========================================
   ESTADÍSTICAS
   ========================================== */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
  color: var(--color-white);
}

/* ==========================================
   IMAGEN DERECHA
   ========================================== */
.hero-image-container {
  position: relative;
}

.hero-image {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 24, 69, 0.5) 0%,
    rgba(42, 39, 93, 0.45) 30%,
    rgba(113, 181, 226, 0.35) 60%,
    rgba(132, 233, 247, 0.3) 100%
  );
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero-image:hover::after {
  opacity: 0.7;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.hero-image .floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  z-index: 3;
}

.hero-image .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: #71b5e2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-image .floating-card .card-icon i {
  font-size: 1.5rem;
  color: #ffffff !important;
  display: block;
  line-height: 1;
}

.hero-image .floating-card .card-content h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--color-primary);
}

.hero-image .floating-card .card-content .growth-percentage {
  font-size: 1.25rem;
  font-weight: 700;
  color: #22c55e;
}

/* ==========================================
   RESPONSIVE — TABLET GRANDE (992px)
   ========================================== */
@media (max-width: 992px) {
  .hero-section {
    padding: 60px 0 50px;
  }

  .hero-content .row {
    flex-direction: column-reverse;
  }

  .hero-text {
    padding-top: 30px;
    padding-right: 0;
  }

  .hero-stats {
    gap: 2rem;
  }
}

/* ==========================================
   RESPONSIVE — TABLET (768px)
   ========================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    align-items: stretch;
    margin-bottom: 2rem;
  }

  .btn-primary {
    justify-content: center;
  }

  .hero-micro-copy {
    text-align: center;
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .stat-item {
    flex: 1;
    text-align: center;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-image .floating-card {
    bottom: 10px;
    left: 10px;
    padding: 1rem;
    min-width: 160px;
  }
}

/* ==========================================
   RESPONSIVE — MÓVIL (576px)
   ========================================== */
@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0 40px;
  }

  .hero-text {
    padding-top: 20px;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.2rem;
    white-space: normal;
    line-height: 1.3;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    word-break: break-word;
    overflow-wrap: break-word;
    padding-right: 0.25rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }

  .hero-buttons {
    gap: 0.6rem;
    margin-bottom: 1.8rem;
  }

  .btn-primary {
    font-size: 0.95rem;
    padding: 12px 24px;
  }

  .hero-micro-copy {
    font-size: 0.75rem;
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 1.5rem;
    padding: 0;
  }

  .stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0.5rem;
  }

  .stat-item:last-child {
    border-right: none;
  }

  .stat-number {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .hero-image .floating-card {
    bottom: 10px;
    left: 10px;
    padding: 0.8rem 1rem;
    min-width: 140px;
    gap: 0.7rem;
  }

  .hero-image .floating-card .card-icon {
    width: 40px;
    height: 40px;
  }

  .hero-image .floating-card .card-icon i {
    font-size: 1.2rem;
  }

  .hero-image .floating-card .card-content h5 {
    font-size: 0.78rem;
  }

  .hero-image .floating-card .card-content .growth-percentage {
    font-size: 1.1rem;
  }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* ==========================================
   LEFT COLUMN
   ========================================== */
.about-left {
  position: relative;
  padding-right: 2rem;
}

.images-composition {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.image-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.image-item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.video-item {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  position: relative;
  background: #000;
  width: 100%;
  height: auto;
}

.image-item-1:hover,
.image-item-2:hover,
.video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.image-item-1 img,
.image-item-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(42, 39, 93, 0.05) 0%,
    rgba(113, 181, 226, 0.03) 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-item-1:hover .image-overlay,
.image-item-2:hover .image-overlay {
  opacity: 0.7;
}

/* ==========================================
   RIGHT COLUMN
   ========================================== */
.about-right {
  padding-left: 3rem;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent-3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title .highlight {
  color: var(--color-accent-3);
}

.section-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 3rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.credential-item:hover {
  border-color: var(--color-accent-3);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(113, 181, 226, 0.15);
}

.credential-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-icon i {
  font-size: 1.5rem;
  color: var(--color-white);
}

.credential-content {
  flex: 1;
}

.credential-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.credential-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.4;
  font-weight: 600;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-about {
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(113, 181, 226, 0.3);
}

.btn-about:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(113, 181, 226, 0.4);
}

.btn-about i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-about:hover i {
  transform: translateX(5px);
}

/* ==========================================
   YOUTUBE FACADE
   ========================================== */
.yt-facade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.yt-facade__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.yt-facade:hover .yt-facade__thumb {
  transform: scale(1.04);
  filter: brightness(0.82);
}

.yt-facade__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 42px;
  background: #ff0000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 2;
}

.yt-facade:hover .yt-facade__btn {
  background: #cc0000;
  transform: translate(-50%, -50%) scale(1.1);
}

.yt-facade__btn::after {
  content: "";
  border-style: solid;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid #ffffff;
  margin-left: 4px;
}

.yt-facade__label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 2;
}

.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================
   RESPONSIVE ABOUT
   ========================================== */
@media (max-width: 1199px) {
  .about-left {
    padding-right: 1.5rem;
  }

  .about-right {
    padding-left: 2rem;
  }

  .images-composition {
    gap: 15px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .credentials-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .col-lg-5,
  .col-lg-7 {
    width: 100%;
  }

  .about-left {
    padding-right: 0;
    margin-bottom: 4rem;
  }

  .about-right {
    padding-left: 0;
  }

  .images-composition {
    max-width: 500px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }

  .about-left {
    margin-bottom: 3rem;
  }

  .images-composition {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .image-item-1,
  .image-item-2 {
    grid-column: unset;
    grid-row: unset;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .video-item {
    grid-column: unset;
    grid-row: unset;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .about-right {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
  }

  .section-description {
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .credential-item {
    padding: 1.2rem;
    text-align: left;
  }

  .credential-icon {
    width: 45px;
    height: 45px;
  }

  .credential-icon i {
    font-size: 1.3rem;
  }

  .credential-number {
    font-size: 1.3rem;
  }

  .credential-label {
    font-size: 0.85rem;
  }

  .about-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-about {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .images-composition {
    gap: 15px;
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 1.2px;
  }

  .section-title {
    font-size: 1.5rem;
    padding: 0 0.3rem;
  }

  .section-description {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 0.5rem;
  }

  .video-item {
    border-radius: 15px;
  }

  .credential-item {
    padding: 1rem;
  }

  .credential-number {
    font-size: 1.2rem;
  }

  .credential-label {
    font-size: 0.8rem;
  }

  .btn-about {
    font-size: 0.9rem;
    padding: 0.9rem 1.8rem;
  }
}

@media (max-width: 375px) {
  .section-title {
    font-size: 1.4rem;
  }

  .section-description {
    font-size: 0.88rem;
  }

  .credential-icon {
    width: 40px;
    height: 40px;
  }

  .credential-icon i {
    font-size: 1.2rem;
  }
}

/* ==========================================
   PROBLEMS SECTION
   ========================================== */
.problems-section-v2 {
  padding: 100px 0 160px;
  background: linear-gradient(
    135deg,
    #1a1845 0%,
    var(--color-primary) 30%,
    var(--color-secondary) 60%,
    var(--color-accent-1) 100%
  );
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.problems-section-v2::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(113, 181, 226, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.problems-section-v2::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(132, 233, 247, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
  max-width: 800px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}

.section-label-v2 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  color: var(--color-light);
}

.section-title-v2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title-v2 .highlight {
  color: var(--color-light);
}

.section-description-v2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.drag-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.drag-hint-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.drag-hint-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.drag-hint-text i {
  font-size: 0.85rem;
}

/* ==========================================
   SLIDER WRAPPER
   ========================================== */
.problems-slider-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.slider-fade-left,
.slider-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.slider-fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(26, 24, 69, 0.7), transparent);
}

.slider-fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(42, 39, 93, 0.7), transparent);
}

.problems-swiper-clean {
  width: 100%;
  padding: 20px 60px 40px !important;
  cursor: grab;
}

.problems-swiper-clean:active {
  cursor: grabbing;
}

.problems-swiper-clean .swiper-slide {
  width: 360px;
  height: auto;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  opacity: 0.75;
}

.problems-swiper-clean .swiper-slide-active,
.problems-swiper-clean .swiper-slide-next {
  opacity: 1;
}

/* ==========================================
   CARD DESIGN
   ========================================== */
.problem-card-v2 {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.problem-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.problem-badge-v2 {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(113, 181, 226, 0.4);
}

.problem-image-v2 {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-accent-1) 0%,
    var(--color-accent-3) 100%
  );
}

.problem-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.problem-card-v2:hover .problem-image-v2 img {
  transform: scale(1.06);
}

.problem-image-v2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.problem-content-v2 {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.problem-title-v2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.9rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.problem-card-v2:hover .problem-title-v2 {
  color: var(--color-accent-3);
}

.problem-description-v2 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
  flex: 1;
  margin-bottom: auto;
}

.problem-footer-v2 {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 2px solid rgba(113, 181, 226, 0.15);
  transition: border-color 0.3s ease;
}

.problem-card-v2:hover .problem-footer-v2 {
  border-top-color: var(--color-accent-3);
}

.problem-footer-v2 i {
  color: var(--color-accent-3);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.problem-card-v2:hover .problem-footer-v2 i {
  transform: translateX(4px);
}

.problem-footer-v2 span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-primary);
  font-weight: 700;
}

/* ==========================================
   NAVEGACIÓN EXTERNA
   ========================================== */
.problems-nav-clean {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.nav-btn-clean {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn-clean:hover {
  background: var(--color-light);
  border-color: var(--color-light);
  color: var(--color-primary);
  transform: scale(1.08);
}

.nav-counter-clean {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  min-width: 60px;
  text-align: center;
  letter-spacing: 1px;
}

.current-clean {
  color: var(--color-light);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ==========================================
   CTA BRIDGE
   ========================================== */
.problems-cta-bridge {
  position: relative;
  z-index: 10;
  margin-top: -130px;
  margin-bottom: -70px;
}

.problems-cta-v2 {
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  border-radius: 24px;
  padding: 3rem 3.5rem;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 900px;
  margin: auto;
}

.cta-text-v2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-white);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.cta-text-v2 strong {
  display: block;
  margin-top: 0.3rem;
  font-weight: 800;
  color: var(--color-white);
}

.btn-problems-v2 {
  background: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-problems-v2:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-problems-v2 i {
  transition: transform 0.3s ease;
}

.btn-problems-v2:hover i {
  transform: translateX(5px);
}

/* ==========================================
   RESPONSIVE PROBLEMS
   ========================================== */
@media (max-width: 991px) {
  .problems-section-v2 {
    padding: 80px 0 140px;
  }

  .section-title-v2 {
    font-size: 2.3rem;
  }

  .problems-swiper-clean {
    padding: 20px 30px 40px !important;
  }

  .problems-swiper-clean .swiper-slide {
    width: 320px;
  }

  .slider-fade-left,
  .slider-fade-right {
    width: 40px;
  }

  .problems-cta-bridge {
    margin-top: -100px;
    margin-bottom: -60px;
  }

  .problems-cta-v2 {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2.5rem;
    gap: 1.5rem;
    max-width: 680px;
  }

  .cta-text-v2 {
    font-size: 1.05rem;
  }

  .btn-problems-v2 {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }
}

@media (max-width: 767px) {
  .problems-section-v2 {
    padding: 60px 0 130px;
  }

  .section-title-v2 {
    font-size: 1.9rem;
  }

  .section-description-v2 {
    font-size: 1rem;
  }

  .drag-hint {
    display: none;
  }

  .problems-swiper-clean {
    padding: 15px 16px 36px !important;
  }

  .problems-swiper-clean .swiper-slide {
    width: calc(100vw - 64px);
    max-width: 310px;
  }

  .slider-fade-left,
  .slider-fade-right {
    width: 16px;
  }

  .problem-image-v2 {
    height: 190px;
  }

  .problem-content-v2 {
    padding: 1.4rem;
  }

  .problem-title-v2 {
    font-size: 1.2rem;
  }

  .problems-cta-bridge {
    margin-top: -80px;
    margin-bottom: -50px;
  }

  .problems-cta-v2 {
    padding: 2rem 1.8rem;
    border-radius: 18px;
    gap: 1.2rem;
  }

  .cta-text-v2 {
    font-size: 0.98rem;
  }

  .cta-text-v2 strong {
    margin-top: 0.4rem;
    font-size: 0.98rem;
  }

  .btn-problems-v2 {
    font-size: 0.9rem;
    padding: 0.9rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .problems-section-v2 {
    padding: 60px 0 110px;
  }

  .section-title-v2 {
    font-size: 1.65rem;
  }

  .problems-swiper-clean .swiper-slide {
    width: calc(100vw - 48px);
  }

  .problems-cta-bridge {
    margin-top: -60px;
    margin-bottom: -40px;
  }

  .problems-cta-v2 {
    padding: 1.8rem 1.4rem;
    border-radius: 16px;
  }

  .cta-text-v2 {
    font-size: 0.92rem;
  }

  .btn-problems-v2 {
    font-size: 0.88rem;
    padding: 0.85rem 1.5rem;
  }
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits-section-v2 {
  padding: 170px 0 100px 0;
  background: linear-gradient(
    135deg,
    #1a1845 0%,
    var(--color-primary) 30%,
    var(--color-secondary) 60%,
    var(--color-accent-1) 100%
  );
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefits-section-v2::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(113, 181, 226, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -200px;
  right: -150px;
  pointer-events: none;
  z-index: 0;
}

.benefits-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.benefits-header-left {
  flex: 1;
  max-width: 700px;
}

.benefits-main-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.benefits-main-title .highlight {
  color: var(--color-light);
}

.benefits-main-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.benefits-header-right {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.btn-more-benefits {
  background: var(--color-light);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(132, 233, 247, 0.3);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-more-benefits:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(132, 233, 247, 0.5);
  border-color: var(--color-light);
}

.btn-more-benefits i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.btn-more-benefits:hover i {
  transform: translateX(5px);
}

.benefits-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  position: relative;
  z-index: 2;
}

.benefit-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-item-v2:hover {
  transform: translateX(8px);
}

.benefit-icon-v2 {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}

.benefit-item-v2:hover .benefit-icon-v2 {
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  border-color: var(--color-light);
  transform: scale(1.05);
}

.benefit-icon-v2 i {
  font-size: 2rem;
  color: var(--color-light);
  transition: all 0.3s ease;
}

.benefit-item-v2:hover .benefit-icon-v2 i {
  color: var(--color-white);
}

.benefit-content-v2 {
  flex: 1;
}

.benefit-title-v2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.benefit-item-v2:hover .benefit-title-v2 {
  color: var(--color-light);
}

.benefit-desc-v2 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  transition: color 0.3s ease;
}

.benefit-item-v2:hover .benefit-desc-v2 {
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   RESPONSIVE BENEFITS
   ========================================== */
@media (max-width: 1199px) {
  .problems-section-v2 {
    padding: 100px 0 160px 0;
    z-index: 2;
  }

  .problems-cta-v2 {
    bottom: -80px;
    padding: 2.8rem 3rem;
    max-width: 95%;
    z-index: 999;
  }

  .benefits-section-v2 {
    padding: 150px 0 80px 0;
    z-index: 1;
  }

  .section-title-v2 {
    font-size: 2.4rem;
  }

  .section-description-v2 {
    font-size: 1rem;
  }

  .problem-image-v2 {
    height: 220px;
  }

  .cta-text-v2 {
    font-size: 1.15rem;
  }

  .benefits-main-title {
    font-size: 2.4rem;
  }

  .benefits-grid-v2 {
    gap: 2.5rem 2rem;
  }

  .benefit-icon-v2 {
    width: 65px;
    height: 65px;
  }

  .benefit-icon-v2 i {
    font-size: 1.8rem;
  }

  .benefit-title-v2 {
    font-size: 1.25rem;
  }

  .benefit-desc-v2 {
    font-size: 0.95rem;
  }
}

@media (max-width: 991px) {
  .problems-section-v2 {
    padding: 80px 0 140px 0;
    z-index: 2;
  }

  .problems-cta-v2 {
    bottom: -120px;
    padding: 2.5rem 2.5rem;
    border-radius: 24px;
    max-width: 90%;
    z-index: 999;
  }

  .benefits-section-v2 {
    padding: 140px 0 80px 0;
    z-index: 1;
  }

  .section-title-v2 {
    font-size: 2.2rem;
  }

  .section-description-v2 {
    font-size: 1rem;
  }

  .problem-image-v2 {
    height: 220px;
  }

  .cta-text-v2 {
    font-size: 1.1rem;
  }

  .benefits-top-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 2rem;
  }

  .benefits-header-left {
    max-width: 100%;
  }

  .benefits-main-title {
    font-size: 2.2rem;
  }

  .benefits-main-description {
    font-size: 1.05rem;
  }

  .btn-more-benefits {
    padding: 1rem 2.2rem;
    font-size: 0.95rem;
  }

  .benefits-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 767px) {
  .problems-section-v2 {
    padding: 60px 0 120px 0;
    z-index: 2;
  }

  .problems-cta-v2 {
    bottom: -60px;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    max-width: 90%;
    z-index: 999;
  }

  .benefits-section-v2 {
    padding: 130px 0 60px 0;
    z-index: 1;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-label-v2 {
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
  }

  .section-title-v2 {
    font-size: 1.8rem;
  }

  .section-description-v2 {
    font-size: 0.95rem;
  }

  .problem-image-v2 {
    height: 200px;
  }

  .problem-badge-v2 {
    top: 16px;
    left: 16px;
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }

  .problem-content-v2 {
    padding: 1.5rem 1.5rem 1.3rem;
  }

  .problem-title-v2 {
    font-size: 1.25rem;
  }

  .problem-description-v2 {
    font-size: 0.9rem;
  }

  .problem-footer-v2 {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }

  .problem-footer-v2 span {
    font-size: 0.85rem;
  }

  .cta-text-v2 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-problems-v2 {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .problems-section-v2::before,
  .problems-section-v2::after {
    display: none;
  }

  .benefits-top-header {
    margin-bottom: 40px;
    gap: 1.5rem;
  }

  .benefits-main-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .benefits-main-description {
    font-size: 0.95rem;
  }

  .btn-more-benefits {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .benefits-grid-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-item-v2 {
    gap: 1.2rem;
  }

  .benefit-icon-v2 {
    width: 60px;
    height: 60px;
  }

  .benefit-icon-v2 i {
    font-size: 1.6rem;
  }

  .benefit-title-v2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .benefit-desc-v2 {
    font-size: 0.92rem;
  }

  .benefits-section-v2::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .problems-section-v2 {
    padding: 60px 0 110px 0;
    z-index: 2;
  }

  .problems-cta-v2 {
    bottom: -80px;
    padding: 1.8rem 1.2rem;
    border-radius: 16px;
    max-width: 92%;
    z-index: 999;
  }

  .benefits-section-v2 {
    padding: 120px 0 60px 0;
    z-index: 1;
  }

  .section-title-v2 {
    font-size: 1.5rem;
  }

  .problem-card-v2 {
    border-radius: 20px;
  }

  .cta-text-v2 {
    font-size: 0.95rem;
  }

  .benefits-main-title {
    font-size: 1.5rem;
  }

  .benefit-item-v2 {
    gap: 1rem;
  }

  .benefit-icon-v2 {
    width: 55px;
    height: 55px;
  }

  .benefit-icon-v2 i {
    font-size: 1.4rem;
  }

  .benefit-title-v2 {
    font-size: 1.1rem;
  }

  .benefit-desc-v2 {
    font-size: 0.88rem;
  }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(113, 181, 226, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -150px;
  right: -200px;
  pointer-events: none;
}

.services-section .section-header {
  max-width: 900px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.services-section .section-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent-3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.services-section .section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.services-section .section-title .highlight {
  color: var(--color-accent-3);
}

.services-section .section-description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-light);
  animation: fadeInUp 0.8s ease 0.4s backwards;
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.service-card {
  background: var(--color-white);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: fadeInUp 0.8s ease backwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.5s;
}
.service-card:nth-child(2) {
  animation-delay: 0.6s;
}
.service-card:nth-child(3) {
  animation-delay: 0.7s;
}
.service-card:nth-child(4) {
  animation-delay: 0.8s;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-top-border {
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent-3), var(--color-light));
  transition: all 0.4s ease;
}

.service-card:hover .service-top-border {
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-accent-3)
  );
}

.service-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(113, 181, 226, 0.25);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 10px 25px rgba(113, 181, 226, 0.35);
}

.service-icon i {
  font-size: 1.2rem;
  color: var(--color-white);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  margin: 0;
  transition: color 0.3s ease;
  flex: 1;
}

.service-card:hover .service-title {
  color: var(--color-accent-3);
}

.service-description {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-light);
  padding: 0 2rem 1.2rem;
  flex: 1;
  margin-bottom: 0;
}

.service-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(42, 39, 93, 0.2) 100%
  );
  pointer-events: none;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-top: 2px solid rgba(113, 181, 226, 0.15);
  transition: all 0.3s ease;
}

.service-card:hover .service-link {
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  color: var(--color-white);
  border-top-color: transparent;
}

.service-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

.services-bottom {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.bottom-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  background: var(--color-white);
  border-radius: 50px;
  border: 2px solid rgba(113, 181, 226, 0.2);
  box-shadow: 0 4px 15px rgba(113, 181, 226, 0.15);
  transition: all 0.3s ease;
}

.bottom-text:hover {
  border-color: var(--color-accent-3);
  box-shadow: 0 6px 20px rgba(113, 181, 226, 0.25);
  transform: translateY(-2px);
}

.bottom-text i {
  color: var(--color-accent-3);
  font-size: 1.2rem;
}

.bottom-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   RESPONSIVE SERVICES
   ========================================== */
@media (max-width: 1199px) {
  .services-section .section-title {
    font-size: 2.4rem;
  }

  .service-header {
    padding: 1.8rem 1.8rem 0.9rem;
    gap: 0.9rem;
  }

  .service-description {
    padding: 0 1.8rem 1.1rem;
    font-size: 0.9rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon i {
    font-size: 1.4rem;
  }

  .service-image {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }

  .services-section .section-header {
    margin-bottom: 60px;
  }

  .services-section .section-title {
    font-size: 2.2rem;
  }

  .services-section .section-description {
    font-size: 1.05rem;
  }

  .services-grid {
    margin-bottom: 40px;
  }

  .service-image {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 60px 0;
  }

  .services-section .section-header {
    margin-bottom: 40px;
  }

  .services-section .section-label {
    font-size: 0.8rem;
  }

  .services-section .section-title {
    font-size: 1.8rem;
  }

  .services-section .section-description {
    font-size: 0.95rem;
  }

  .service-card {
    border-radius: 0 0 16px 16px;
    margin-bottom: 1.5rem;
  }

  .service-header {
    padding: 1.5rem 1.5rem 0.8rem;
    gap: 0.8rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .service-icon i {
    font-size: 1.3rem;
  }

  .service-title {
    font-size: 1.15rem;
  }

  .service-description {
    font-size: 0.88rem;
    padding: 0 1.5rem 1rem;
    line-height: 1.5;
  }

  .service-image {
    height: 200px;
  }

  .service-link {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .services-bottom {
    padding: 2rem 1rem 0;
  }

  .bottom-text {
    font-size: 0.85rem;
    padding: 1rem 1.5rem;
    gap: 0.6rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .bottom-text i {
    font-size: 1rem;
  }

  .services-section::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-section .section-title {
    font-size: 1.5rem;
  }

  .service-card {
    border-radius: 0 0 12px 12px;
  }

  .service-header {
    padding: 1.3rem 1.2rem 0.7rem;
    gap: 0.7rem;
  }

  .service-icon {
    width: 45px;
    height: 45px;
  }

  .service-icon i {
    font-size: 1.2rem;
  }

  .service-title {
    font-size: 1.05rem;
  }

  .service-description {
    padding: 0 1.2rem 0.9rem;
    font-size: 0.85rem;
  }

  .service-image {
    height: 180px;
  }

  .service-link {
    padding: 0.9rem 1.2rem;
    font-size: 0.88rem;
  }

  .bottom-text {
    font-size: 0.8rem;
    padding: 0.9rem 1.2rem;
  }
}

/* Accesibilidad services */
.service-link:focus {
  outline: 3px solid var(--color-accent-3);
  outline-offset: 3px;
}

.bottom-text:focus {
  outline: 3px solid var(--color-accent-3);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-icon,
  .service-image img,
  .service-link i,
  .bottom-text {
    transition: none;
    animation: none;
  }
}

/* ==========================================
   MODALES
   ========================================== */
.recurso-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.recurso-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 24, 69, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.1);
  border: none;
  border-radius: 50%;
  color: #ef4444;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #ef4444;
  color: var(--color-white);
  transform: rotate(90deg);
}

.modal-header {
  padding: 3rem 3rem 2rem;
  text-align: center;
  border-bottom: 2px solid rgba(113, 181, 226, 0.1);
}

.modal-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 35px rgba(113, 181, 226, 0.3);
}

.modal-icon i {
  font-size: 2.5rem;
  color: var(--color-white);
}

.errores-icon {
  background: linear-gradient(135deg, #ef4444, #f97316);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.articulo-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.plantillas-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.modal-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

.modal-body {
  padding: 2.5rem 3rem 3rem;
}

.recursos-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recurso-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 2px solid rgba(113, 181, 226, 0.15);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.recurso-link:hover {
  background: linear-gradient(
    135deg,
    rgba(113, 181, 226, 0.05),
    rgba(132, 233, 247, 0.05)
  );
  border-color: var(--color-accent-3);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(113, 181, 226, 0.15);
}

.recurso-link-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.recurso-link:hover .recurso-link-icon {
  transform: scale(1.08) rotate(-5deg);
}

.recurso-link-icon i {
  font-size: 1.3rem;
  color: var(--color-white);
}

.recurso-link-content {
  flex: 1;
}

.recurso-link-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.recurso-link:hover .recurso-link-content h4 {
  color: var(--color-accent-3);
}

.recurso-link-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0;
}

.recurso-link > i {
  font-size: 1.1rem;
  color: var(--color-accent-3);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.recurso-link:hover > i {
  opacity: 1;
  transform: translateX(5px);
}

.badge-featured {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.badge-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.recurso-link.featured {
  border-color: var(--color-accent-3);
  background: linear-gradient(
    135deg,
    rgba(113, 181, 226, 0.03),
    rgba(132, 233, 247, 0.03)
  );
}

.recurso-link.download-link:hover .recurso-link-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.modal-tip {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(113, 181, 226, 0.08),
    rgba(132, 233, 247, 0.08)
  );
  border-left: 4px solid var(--color-accent-3);
  border-radius: 12px;
  margin-top: 2rem;
}

.modal-tip i {
  font-size: 1.5rem;
  color: var(--color-accent-3);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.modal-tip p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.modal-tip strong {
  color: var(--color-primary);
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--color-accent-3);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-light);
}

/* ==========================================
   RESPONSIVE MODALES
   ========================================== */
@media (max-width: 991px) {
  .modal-content {
    max-width: 600px;
  }

  .modal-header {
    padding: 2.5rem 2.5rem 1.8rem;
  }

  .modal-body {
    padding: 2rem 2.5rem 2.5rem;
  }
}

@media (max-width: 767px) {
  .recurso-modal {
    padding: 15px;
  }

  .modal-content {
    border-radius: 20px;
    max-height: 90vh;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .modal-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .modal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.2rem;
  }

  .modal-icon i {
    font-size: 2rem;
  }

  .modal-title {
    font-size: 1.6rem;
  }

  .modal-subtitle {
    font-size: 0.95rem;
  }

  .modal-body {
    padding: 1.8rem 1.5rem 2rem;
  }

  .recursos-list {
    gap: 0.8rem;
  }

  .recurso-link {
    padding: 1.2rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .recurso-link:hover {
    transform: translateY(-5px);
  }

  .recurso-link-icon {
    width: 45px;
    height: 45px;
  }

  .recurso-link-icon i {
    font-size: 1.2rem;
  }

  .recurso-link-content h4 {
    font-size: 1rem;
  }

  .recurso-link-content p {
    font-size: 0.85rem;
  }

  .recurso-link > i {
    display: none;
  }

  .modal-tip {
    padding: 1.2rem;
    flex-direction: column;
    text-align: center;
  }

  .modal-tip p {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .modal-header {
    padding: 1.8rem 1.2rem 1.3rem;
  }

  .modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .modal-icon i {
    font-size: 1.8rem;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .modal-body {
    padding: 1.5rem 1.2rem 1.8rem;
  }

  .recurso-link {
    border-radius: 12px;
  }
}

.modal-close:focus,
.recurso-link:focus {
  outline: 3px solid var(--color-accent-3);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .modal-content,
  .modal-close,
  .recurso-link {
    transition: none;
    animation: none;
  }
}

/* ==========================================
   CONTACT FORM SECTION
   ========================================== */
.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(113, 181, 226, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

.form-column {
  padding-right: 3rem;
}

.image-column {
  padding-left: 3rem;
}

.form-wrapper {
  max-width: 580px;
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-label {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.form-title .highlight {
  color: var(--color-accent-3);
}

.form-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

.contact-form {
  margin-bottom: 2rem;
}

.form-row-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group-custom {
  margin-bottom: 1rem;
}

.form-control-custom {
  width: 100%;
  padding: 1rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  outline: none;
}

.form-control-custom::placeholder {
  color: #9ca3af;
}

.form-control-custom:focus {
  border-color: var(--color-accent-3);
  box-shadow: 0 0 0 4px rgba(113, 181, 226, 0.1);
  background: var(--color-white);
}

select.form-control-custom {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.3rem center;
  padding-right: 3rem;
}

select.form-control-custom option {
  padding: 0.5rem;
}

.btn-submit-form {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(113, 181, 226, 0.3);
}

.btn-submit-form:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(113, 181, 226, 0.4);
}

.btn-submit-form i {
  font-size: 1rem;
}

.form-footer-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 2px solid #e5e7eb;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.info-item i {
  color: var(--color-accent-3);
  font-size: 1.1rem;
}

.form-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.form-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-accent-3),
    var(--color-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon i {
  font-size: 1.5rem;
  color: var(--color-white);
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1.3;
}

.image-decoration {
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 3px solid var(--color-accent-3);
  border-radius: 30px;
  top: -25px;
  right: -25px;
  z-index: -1;
  opacity: 0.3;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ==========================================
   WHATSAPP ALTERNATIVE
   ========================================== */
.whatsapp-alternative {
  padding: 0 0 80px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.whatsapp-box {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  padding: 2.5rem 3rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.2);
}

.whatsapp-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.whatsapp-content > i {
  font-size: 3.5rem;
  color: var(--color-white);
}

.whatsapp-text h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.whatsapp-text p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.btn-whatsapp {
  background: var(--color-white);
  color: #25d366;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #f0fdf4;
  color: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp i {
  font-size: 1.3rem;
}

/* ==========================================
   RESPONSIVE CONTACT + WHATSAPP
   ========================================== */
@media (max-width: 991px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .form-column,
  .image-column {
    padding-right: 15px;
    padding-left: 15px;
  }

  .form-column {
    margin-bottom: 3rem;
  }

  .form-wrapper {
    max-width: 100%;
  }

  .form-title {
    font-size: 2.2rem;
  }

  .whatsapp-box {
    padding: 2rem 2.5rem;
  }

  .whatsapp-content > i {
    font-size: 3rem;
  }

  .whatsapp-text h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .form-header {
    margin-bottom: 2rem;
  }

  .form-label {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .form-description {
    font-size: 0.95rem;
  }

  .form-row-custom {
    grid-template-columns: 1fr;
  }

  .form-control-custom {
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
  }

  .btn-submit-form {
    padding: 1.1rem 2rem;
    font-size: 1rem;
  }

  .form-footer-info {
    flex-direction: column;
    gap: 1rem;
  }

  .image-badge {
    bottom: 20px;
    left: 20px;
    padding: 1.2rem;
  }

  .badge-number {
    font-size: 1.6rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }

  .whatsapp-alternative {
    padding: 0 0 60px;
  }

  .whatsapp-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .whatsapp-content {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-content > i {
    font-size: 2.5rem;
  }

  .whatsapp-text h4 {
    font-size: 1.2rem;
  }

  .whatsapp-text p {
    font-size: 0.9rem;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .contact-form-section::before {
    display: none;
  }

  .image-decoration {
    display: none;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.5rem;
  }

  .form-control-custom {
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
  }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #1a1845 0%,
    var(--color-primary) 30%,
    var(--color-secondary) 60%,
    var(--color-accent-1) 100%
  );
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(113, 181, 226, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -150px;
  left: -100px;
  pointer-events: none;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(132, 233, 247, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 2rem;
}

.testimonials-header-left {
  flex: 1;
}

.testimonials-header .section-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.testimonials-header .section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin: 0;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.testimonials-header .section-title .highlight {
  color: var(--color-light);
}

.testimonials-header-right {
  display: flex;
  align-items: center;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.testimonial-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: var(--color-light);
  border-color: var(--color-light);
  color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(113, 181, 226, 0.3);
}

.testimonial-nav-btn:active {
  transform: scale(0.95);
}

.testimonial-pagination-custom {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  min-width: 60px;
  text-align: center;
}

.testimonial-pagination-custom .current-slide {
  color: var(--color-light);
  font-size: 1.3rem;
}

.testimonials-swiper-wrapper {
  position: relative;
  padding: 0 0 20px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.testimonials-swiper {
  overflow: visible;
  padding: 10px;
  margin: -10px;
}

.testimonials-swiper .swiper-wrapper {
  padding-bottom: 20px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(113, 181, 226, 0.2);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 3rem 2.5rem 2.5rem;
}

.testimonial-image-circular {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid var(--color-accent-3);
  box-shadow: 0 8px 25px rgba(113, 181, 226, 0.25);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.testimonial-card:hover .testimonial-image-circular {
  transform: scale(1.08);
  box-shadow: 0 10px 35px rgba(113, 181, 226, 0.4);
  border-color: var(--color-light);
}

.testimonial-image-circular img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image-circular img {
  transform: scale(1.1);
}

.testimonial-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-name {
  color: var(--color-accent-3);
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: auto;
  flex: 1;
  position: relative;
  max-width: 100%;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: rgba(113, 181, 226, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(113, 181, 226, 0.15);
  margin-top: 1.5rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-footer {
  border-top-color: rgba(113, 181, 226, 0.35);
}

.testimonial-company {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.testimonial-company i {
  color: var(--color-accent-3);
  font-size: 1rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  justify-content: center;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonials-trust {
  margin-top: 60px;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--color-light);
}

.trust-item strong {
  color: var(--color-white);
  font-weight: 700;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  display: none;
}

.testimonials-swiper.swiper-grab {
  cursor: grab;
}

.testimonials-swiper.swiper-grabbing {
  cursor: grabbing;
}

.testimonials-swiper .swiper-slide {
  transition: opacity 0.3s ease;
}

.testimonials-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.55;
}

.testimonials-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.testimonial-nav-btn:focus {
  outline: 3px solid var(--color-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .testimonial-image-circular,
  .testimonial-image-circular img,
  .testimonial-nav-btn,
  .testimonials-swiper .swiper-slide {
    transition: none;
    animation: none;
  }
}

/* ==========================================
   RESPONSIVE TESTIMONIALS
   ========================================== */
@media (max-width: 1199px) {
  .testimonials-header .section-title {
    font-size: 2.4rem;
  }

  .testimonial-content {
    padding: 2.5rem 2rem 2rem;
  }

  .testimonial-image-circular {
    width: 90px;
    height: 90px;
    margin-bottom: 1.3rem;
  }

  .testimonial-name {
    font-size: 1.35rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }

  .testimonials-header-right {
    width: 100%;
    justify-content: flex-end;
  }

  .testimonials-header .section-title {
    font-size: 2.2rem;
  }

  .testimonial-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .testimonial-content {
    padding: 2.2rem 1.8rem 1.8rem;
  }

  .testimonial-image-circular {
    width: 85px;
    height: 85px;
  }

  .testimonials-trust {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header {
    margin-bottom: 40px;
    gap: 1.5rem;
  }

  .testimonials-header .section-label {
    font-size: 0.8rem;
  }

  .testimonials-header .section-title {
    font-size: 1.8rem;
  }

  .testimonial-navigation {
    gap: 1rem;
  }

  .testimonial-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .testimonial-pagination-custom {
    font-size: 1rem;
    min-width: 50px;
  }

  .testimonial-pagination-custom .current-slide {
    font-size: 1.15rem;
  }

  .testimonial-content {
    padding: 2rem 1.5rem 1.5rem;
  }

  .testimonial-image-circular {
    width: 80px;
    height: 80px;
    margin-bottom: 1.2rem;
    border-width: 3px;
  }

  .testimonial-name {
    font-size: 1.25rem;
  }

  .testimonial-role {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .testimonial-text::before {
    font-size: 3.5rem;
    top: -15px;
  }

  .testimonial-footer {
    gap: 0.8rem;
    padding-top: 1.2rem;
    margin-top: 1.2rem;
  }

  .testimonial-company {
    font-size: 0.85rem;
  }

  .testimonial-rating i {
    font-size: 0.95rem;
  }

  .testimonials-trust {
    margin-top: 40px;
  }

  .trust-item {
    padding: 0.9rem 1.5rem;
    font-size: 0.88rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .trust-item i {
    font-size: 1.3rem;
  }

  .testimonials-section::before,
  .testimonials-section::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonials-header .section-title {
    font-size: 1.5rem;
  }

  .testimonial-card {
    border-radius: 20px;
  }

  .testimonial-content {
    padding: 1.8rem 1.2rem 1.3rem;
  }

  .testimonial-image-circular {
    width: 75px;
    height: 75px;
    margin-bottom: 1rem;
  }

  .testimonial-name {
    font-size: 1.15rem;
  }

  .testimonial-role {
    font-size: 0.85rem;
  }

  .testimonial-text {
    font-size: 0.88rem;
  }

  .testimonial-text::before {
    font-size: 3rem;
  }

  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer-section {
  background: linear-gradient(
    135deg,
    #1a1845 0%,
    var(--color-primary) 50%,
    #1a1845 100%
  );
  color: var(--color-white);
  padding: 3rem 0 0 0;
  position: relative;
  overflow: hidden;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo-container {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 80px !important;
  width: 200px !important;
  object-fit: cover !important;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  filter: brightness(1.3);
  transform: scale(1.05);
}

.footer-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-stat-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-light);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.footer-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  padding: 0;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-light), transparent);
  border-radius: 2px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 0;
}

.footer-menu li a::before {
  content: "›";
  font-size: 1.1rem;
  margin-right: 0.4rem;
  color: var(--color-light);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-menu li a:hover {
  color: var(--color-light);
  padding-left: 8px;
}

.footer-menu li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  padding-left: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  align-items: center;
  font-size: 0.85rem;
}

.footer-contact-item i {
  font-size: 1rem;
  color: var(--color-light);
  min-width: 16px;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.footer-contact-item a:hover {
  color: var(--color-light);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-light);
  color: var(--color-primary);
  transform: translateY(-3px);
  border-color: var(--color-light);
  box-shadow: 0 5px 20px rgba(132, 233, 247, 0.3);
}

.footer-social a i {
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 1.2rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0;
  font-weight: 300;
  text-align: left;
  flex-shrink: 0;
}

.footer-copyright strong {
  color: var(--color-light);
  font-weight: 600;
}

.footer-developed {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  margin: 0;
  font-weight: 300;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 0.4rem;
}

.footer-developed .developer-link {
  color: var(--color-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.footer-developed .developer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-light);
  transition: width 0.3s ease;
}

.footer-developed .developer-link:hover {
  color: var(--color-white);
}

.footer-developed .developer-link:hover::after {
  width: 100%;
}

/* ==========================================
   RESPONSIVE FOOTER
   ========================================== */
@media (max-width: 991px) {
  .footer-section {
    padding: 2.5rem 0 0 0;
  }

  .footer-brand {
    padding-right: 0;
    margin-bottom: 1.5rem;
  }

  .footer-links,
  .footer-contact {
    padding-left: 0;
  }

  .footer-logo {
    height: 70px !important;
  }

  .footer-title {
    font-size: 0.95rem;
  }

  .footer-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .footer-section {
    padding: 2rem 0 0 0;
  }

  .footer-main {
    padding-bottom: 1.5rem;
  }

  .footer-logo-container {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .footer-logo {
    height: 65px !important;
  }

  .footer-description {
    text-align: center;
    font-size: 0.85rem;
  }

  .footer-stats {
    justify-content: center;
    width: 100%;
    gap: 1.2rem;
  }

  .footer-stat-item {
    align-items: center;
    text-align: center;
  }

  .footer-stat-number {
    font-size: 1.2rem;
  }

  .footer-stat-label {
    font-size: 0.65rem;
  }

  .footer-main .col-lg-4.col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .footer-main .col-lg-2.col-md-6,
  .footer-main .col-lg-3.col-md-6:nth-child(3) {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .footer-main .col-lg-3.col-md-6:last-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .footer-title {
    text-align: left;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .footer-title::after {
    left: 0;
    transform: none;
  }

  .footer-menu {
    text-align: left;
  }

  .footer-menu li {
    margin-bottom: 0.4rem;
  }

  .footer-menu li a {
    font-size: 0.8rem;
  }

  .footer-contact-item {
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }

  .footer-social {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-bottom {
    padding: 1rem 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    align-items: center;
  }

  .footer-copyright {
    text-align: center;
    font-size: 0.75rem;
  }

  .footer-developed {
    font-size: 0.8rem;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .footer-logo {
    height: 85px !important;
  }

  .footer-description {
    font-size: 0.82rem;
    padding: 0 0.5rem;
  }

  .footer-stats {
    gap: 1rem;
  }

  .footer-stat-number {
    font-size: 1.1rem;
  }

  .footer-stat-label {
    font-size: 0.6rem;
  }

  .footer-contact-item {
    flex-direction: row;
    gap: 0.5rem;
  }

  .footer-developed {
    font-size: 0.75rem;
    padding: 0 1rem;
    flex-wrap: wrap;
  }

  .footer-copyright {
    font-size: 0.7rem;
  }
}

/* ==========================================
   FONT AWESOME — font-display: swap
   FIX: Agrega font-display: swap a las fuentes
        de iconos de Font Awesome cargadas desde
        JSDelivr. Sin esto, el navegador bloquea
        el render hasta que las fuentes cargan,
        causando el warning de 160ms en PageSpeed.
        Con swap, el navegador muestra texto de
        respaldo y reemplaza cuando la fuente
        esté lista — sin bloqueo visible.
   ========================================== */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.0/webfonts/fa-solid-900.woff2")
    format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.0/webfonts/fa-brands-400.woff2")
    format("woff2");
}
