/* =Theme Reset & Basics
----------------------------------------------- */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: var(--fs-body);
  background: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: transparent;
}

.site-header.is-scrolled {
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Adjust for WP Admin Bar */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.top-bar {
  background-color: var(--heading-color); /* Semi-transparent Primary */
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.site-header.is-scrolled .top-bar {
  height: 0;
  padding: 0;
  opacity: 0;
  border-bottom: none;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--secondary-color);
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: 0.3s;
}

.top-bar-left a:hover {
  color: var(--secondary-color);
}

.sms-item a {
  font-weight: 700;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-social {
  display: flex;
  gap: 15px;
}

.header-social a {
  color: var(--white);
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.header-social a svg {
  width: 18px;
  height: 18px;
}

.header-social a:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-top-cta {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-top-cta:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.main-header {
  background: transparent;
  padding: 15px 0;
  transition: padding 0.3s ease;
}

.site-header.is-scrolled .main-header {
  padding: 10px 0;
}

.main-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
}

.site-branding {
  flex-shrink: 0;
}

.site-branding .custom-logo {
  max-width: 180px;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.site-header.is-scrolled .site-branding .custom-logo {
  max-width: 150px;
  filter: none; /* Original colors on white background */
}

.main-navigation {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(10px, 2vw, 30px);
}

.main-navigation a {
  text-decoration: none;
  color: var(--heading-color);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 10px 0;
  transition: 0.3s;
  white-space: nowrap;
}

.main-navigation a:hover {
  color: var(--secondary-color);
}

.site-header.is-scrolled .main-navigation a {
  color: var(--primary-color);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-bg);
  padding: 8px 15px;
  border-radius: var(--main-border-radius);
  border-left: 4px solid var(--secondary-color);
  flex-shrink: 0;
  margin-left: 20px;
}

.phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
}

.phone-icon svg {
  width: 28px;
  height: 28px;
}

.phone-content {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
  line-height: 1;
  margin-bottom: 2px;
}

.phone-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  text-decoration: none;
}

.phone-number:hover {
  color: var(--secondary-color);
}

.menu-toggle {
  display: none;
}

/* GENERAL CUSTOM STYLES */

.container {
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-subtitle);
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  color: var(--primary-color);
  line-height: 1.2;
  margin: 0;
}

.section-title strong {
  font-weight: 700;
}

/* COMPONENTS: BUTTONS */
.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 40px;
  border-radius: var(--main-border-radius);
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* HOME SITE LAYOUT */
.site-main.front-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .site-main.front-page {
    gap: 60px;
  }
}

.site-main.front-page section {
  padding-left: 12px;
  padding-right: 12px;
}

/* =Home Hero
----------------------------------------------- */
.home-hero {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center left;
  padding: calc(var(--section-padding) + 140px) 0 var(--section-padding);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--white);
  margin-top: 0;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Scrim direccional: opaco a la izquierda (detrás del texto),
       transparente a la derecha para que la familia se vea nítida. */
    background: linear-gradient(
        164deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.85) 28%,
        rgba(255, 255, 255, 0.45) 48%,
        rgba(255, 255, 255, 0) 62%
    );
    z-index: 1;
}

.home-hero .container {
  max-width: 1440px;
  position: relative;
  z-index: 2;
}

.home-hero-inner {
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-content,
.hero-form {
  min-width: 0;
}

.hero-subtitle {
  font-size: var(--fs-subtitle);
  letter-spacing: 2px;
  color: var(--white);
  border-bottom: 2px solid var(--white);
  display: inline-block;
}

.hero-title-group h1 {
  font-size: var(--fs-hero);
  line-height: 1;
  margin: 0;
  color: var(--white);
}

.hero-text-light {
  font-weight: 300;
}

.hero-text-bold {
  font-weight: 700;
}

@media (max-width: 980px) {
  .home-hero::before {
    /* En móvil el texto se centra; scrim vertical de arriba hacia abajo */
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.75) 45%,
        rgba(255, 255, 255, 0.3) 100%
    );
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
  }
}

/* =Home Services
----------------------------------------------- */
.home-services {
  padding: 80px 12px;
  background-color: var(--white);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.services-header .section-subtitle {
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}

.services-header .section-title {
  color: var(--heading-color, #16284e);
  line-height: 1.15;
  margin: 0;
}

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

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Barra de acento superior que aparece en hover */
.home-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), #f0584d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(22, 40, 78, 0.12);
  border-color: transparent;
}

.home-service-card:hover::before {
  transform: scaleX(1);
}

.home-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-color), #24407a);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(22, 40, 78, 0.25);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card__icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.home-service-card:hover .home-service-card__icon {
  background: linear-gradient(135deg, var(--secondary-color), #f0584d);
  box-shadow: 0 10px 22px rgba(203, 21, 23, 0.3);
  transform: scale(1.05);
}

.home-service-card__title {
  color: var(--heading-color, #16284e);
  font-size: var(--fs-h4);
  font-weight: 700;
  margin: 0;
}

.home-service-card__desc {
  color: var(--text-color, #555);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.home-service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 4px;
}

.home-service-card__more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.home-service-card:hover .home-service-card__more svg {
  transform: translateX(5px);
}

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

/* =Home About
----------------------------------------------- */
.home-about {
  background-color: var(--light-bg);
  padding: 32px 0;
}

.home-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 240px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left,
.about-right {
  min-width: 0; /* Prevents grid items from expanding due to wide children */
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text {
  font-size: 1.15rem;
  color: var(--text-color);
  margin: 0;
  line-height: 1.8;
}

/* Brand Partnership Redesign */
.brand-partnership {
  position: relative;
  margin: 0;
  padding: 30px;
  background: var(--white);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border-left: 5px solid var(--secondary-color);
}

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

.badge-line {
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.badge-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.partnership-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.partnership-text h3 {
  font-size: 1.75rem;
  color: var(--primary-color);
  line-height: 1.1;
  margin: 0;
  font-weight: 800;
}

.partnership-logo img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
}

.partnership-logo img:hover {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .partnership-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .partnership-text h3 {
    font-size: 1.8rem;
  }
}

/* Flags Carousel CSS Loop */
.flags-carousel {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.flags-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.flags-track img {
  height: 40px;
  margin-right: 20px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =CTA BANNER */
/* Reset básico para el componente */
.cta-banner {
  width: 100%;
  padding: 32px 0;
}

.cta-banner__card {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #f1f5f9;
}

@media screen and (max-width: 768px) {
  .cta-banner__card {
    flex-direction: column;
  }
}

/* --- Left Column: Visual --- */
.cta-banner__visual {
  position: relative;
  width: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 2rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .cta-banner__visual {
    width: 100%;
  }
}

/* Efecto "Blob" (La mancha roja difuminada) */
.cta-banner__blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16rem; /* w-64 */
  height: 16rem; /* h-64 */
  background-color: rgba(203, 21, 23, 0.1); /* primary/10 */
  border-radius: 9999px;
  filter: blur(64px); /* blur-3xl */
  z-index: 1;
}

/* Gradiente overlay al fondo de la imagen */
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(229, 231, 235, 0.5), transparent);
  z-index: 2;
  pointer-events: none;
}

.cta-banner__img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  display: block;
}

@media screen and (max-width: 768px) {
  .cta-banner__img {
    height: 320px;
  }
}

/* --- Right Column: Content --- */
.cta-banner__content {
  flex: 1 1 60%;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  background-color: var(--cta-bg-right);
}

/* Rating Stars */
.cta-banner__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-banner__stars {
  display: flex;
  color: #fdc700;
}
.cta-banner__stars svg {
  fill: currentColor;
}

.cta-banner__rating-text {
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: var(--text-color);
}

/* Headers */
.cta-banner__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-banner__subtitle {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.875rem; /* text-sm */
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  margin: 0;
}

@media (min-width: 768px) {
  .cta-banner__subtitle {
    font-size: 1rem;
  }
}

.cta-banner__title {
  font-size: var(--fs-section-title);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-color);
}

/* Tipografía responsiva fluida similar a md:text-5xl */
@media (min-width: 768px) {
  .cta-banner__title {
    font-size: 3rem;
  }
}

.text-highlight {
  color: var(--secondary-color);
  font-weight: bolder;
}

.cta-banner__description {
  font-size: 1.125rem; /* text-lg */
  line-height: 1.625;
  color: var(--text-color);
  max-width: 32rem;
  margin: 0;
}

/* Buttons & Actions */
.cta-banner__cta-group {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.85rem;
  width: fit-content;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.cta-banner__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--secondary-color);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px; /* rounded-full */
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(203, 21, 23, 0.3); /* shadow-primary */
  transition: all 0.3s ease;
}

.cta-banner__btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-1px);
}

/* Animación Pulse (btn-pulse) */
@keyframes pulse-subtle {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(203, 21, 23, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(203, 21, 23, 0);
  }
}

.btn-pulse {
  animation: pulse-subtle 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-banner__security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  background: rgba(0, 201, 80, 0.08);
  border: 1px solid rgba(0, 201, 80, 0.25);
  color: var(--heading-color, #16284e);
  font-size: 1.15rem;
  font-weight: 700;
}

.cta-banner__security svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.cta-banner__security .text-green {
  color: #00c950;
}

/* Footer Features */
.cta-banner__footer {
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta-banner__feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-color); /* text-slate-700 */
}

.cta-banner__feature-item span {
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .cta-banner__feature-item span {
    font-size: 0.875rem;
  }
}

.cta-banner__feature-item svg {
  color: var(--secondary-color);
  width: 1.25rem;
  height: 1.25rem;
}

/* =============================================
   Testimonials — Muro de reseñas de Google
   ============================================= */
.g-reviews {
  padding: 0 12px;
  background-color: var(--light-bg);
  overflow: hidden;
}

.g-reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.g-reviews__intro .section-subtitle {
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}

.g-reviews__intro .section-title {
  color: var(--heading-color, #16284e);
  line-height: 1.1;
  margin: 0;
  max-width: 17ch;
}

/* Resumen agregado */
.g-reviews__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.g-reviews__logo {
  display: inline-flex;
  line-height: 0;
}

.g-reviews__logo svg {
  width: 34px;
  height: 34px;
}

.g-reviews__score {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-color, #16284e);
  line-height: 1;
}

.g-reviews__summary-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.g-reviews__stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbc05;
}

.g-reviews__stars svg {
  width: 18px;
  height: 18px;
}

.g-reviews__count {
  font-size: 0.85rem;
  color: var(--text-color, #555);
}

.g-reviews__cta {
  margin-left: 8px;
  background: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.g-reviews__cta:hover {
  background: #a81214;
  transform: translateY(-2px);
}

/* Marquee de dos filas */
.g-reviews__marquee {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.g-reviews__row {
  overflow: hidden;
}

.g-reviews__track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.g-reviews__track--ltr {
  animation: g-reviews-scroll-left 60s linear infinite;
}

.g-reviews__track--rtl {
  animation: g-reviews-scroll-right 60s linear infinite;
}

/* Pausa al pasar el cursor */
.g-reviews__marquee:hover .g-reviews__track {
  animation-play-state: paused;
}

@keyframes g-reviews-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes g-reviews-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Tarjeta de reseña */
.g-review {
  flex: 0 0 auto;
  width: 360px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.g-review__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.g-review__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.g-review__meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.g-review__name {
  font-weight: 700;
  color: var(--heading-color, #16284e);
  font-size: 0.98rem;
}

.g-review__date {
  font-size: 0.8rem;
  color: #80868b;
}

.g-review__glogo {
  display: inline-flex;
  line-height: 0;
  flex-shrink: 0;
}

.g-review__stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbc05;
}

.g-review__stars svg {
  width: 16px;
  height: 16px;
}

.g-review__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-color, #444);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .g-reviews {
    padding: 60px 0 70px;
  }

  .g-reviews__header {
    align-items: flex-start;
    gap: 24px;
  }

  .g-reviews__summary {
    width: 100%;
    flex-wrap: wrap;
  }

  .g-review {
    width: 300px;
  }
}

/* Accesibilidad: sin animación si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
  .g-reviews__track--ltr,
  .g-reviews__track--rtl {
    animation: none;
  }

  .g-reviews__row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* News Section */
.home-news {
  padding: 0 12px;
  background-color: #f8f9fa;
}

.news-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.news-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-content {
  padding: 25px;
}

.news-date {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-card-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: var(--font-heading);
  font-weight: 700;
}

.news-card-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-card-title a:hover {
  color: var(--secondary-color);
}

.news-read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.news-read-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.news-read-more:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .news-header-row {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

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

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form Styles */
.cf7-custom-form-container {
  font-family: var(--font-body);
  max-width: 90%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--container-border-radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border-top: 4px solid var(--accent-color);
}

@media screen and (max-width: 600px) {
  .cf7-custom-form-container {
    max-width: 100%;
  }
}

/* Cabecera del formulario */
.form-header {
  background: rgba(246, 247, 248, 0.5); /* Usando tono de --light-bg */
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-header h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--primary-color);
}

.form-header p {
  margin: 0;
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: var(--text-color);
  opacity: 0.7;
  font-weight: 500;
}

.header-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(22, 40, 78, 0.1); /* Tono de primary */
  color: var(--primary-color);
}

.header-icon svg {
  width: 24px;
  height: 24px;
}

/* Cuerpo del formulario */
.form-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin: 0;
}

/* EXPERIMENTO (reducir alto del hero): el texto del label se colapsa con
   font-size:0 y el placeholder actúa como etiqueta visible. El texto del
   label permanece en el DOM para lectores de pantalla (accesibilidad).
   Para revertir: font-size:12px y margin-bottom:4px. */
.form-group label {
  display: block;
  font-size: 0;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
  margin-left: 4px;
  text-align: left;
}

/* ============================================
   CONTACT FORM 7 - GLOBAL STYLES
   ============================================ */

/* Reset de estilos de CF7 para evitar spans extra */
.wpcf7-form-control-wrap {
  display: block;
}

/* Evitar que los wrappers de checkbox se comporten como bloques y rompan el flujo */
.wpcf7-form-control-wrap[data-name*="acceptance"],
.wpcf7-acceptance {
  display: inline-block !important;
  width: auto !important;
}

/* Estilos para inputs globales */
input.wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not(
    [type="radio"]
  ),
select.wpcf7-form-control,
textarea.wpcf7-form-control {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--main-border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  color: var(--text-color);
}

input.wpcf7-form-control:focus,
select.wpcf7-form-control:focus,
textarea.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(203, 21, 23, 0.1);
}

/* Selectores */
.wpcf7-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 1.2em;
  padding-right: 40px !important;
}

/* Botón de envío global */
.wpcf7-submit {
  display: inline-block;
  width: 100%;
  padding: 16px 24px;
  background-color: var(--secondary-color);
  color: var(--white) !important;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.wpcf7-submit:hover {
  background-color: #a81214;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Acceptance / Checkbox */
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
}

.wpcf7-acceptance label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.4;
  cursor: pointer;
}

.wpcf7-acceptance input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  flex-shrink: 0;
  cursor: pointer;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  display: inline-block;
}

/* Sección de Disclaimer / Consentimiento */
.form-disclaimer-section {
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}

.consent-text-box {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: var(--main-border-radius);
  padding: 12px;
  font-size: 10px;
  color: #6b7280;
  line-height: 1.5;
  text-align: justify;
}

.privacy-link-text {
  font-size: 11px;
  color: #9ca3af;
  text-align: left;
  margin: 0;
  line-height: 1.4;
}

.privacy-link-text a {
  color: #6b7280;
  font-weight: 600;
  text-decoration: underline;
}

/* Estilos de respuesta y validación */
.wpcf7-spinner {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: var(--secondary-color);
  margin-top: 4px;
}

.wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  padding: 15px !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  border: 1px solid transparent !important;
  line-height: 1.4;
}

.wpcf7-mail-sent-ok {
  background-color: #ecfdf5 !important;
  border-color: #10b981 !important;
  color: #065f46 !important;
}

.wpcf7-validation-errors {
  background-color: #fef2f2 !important;
  border-color: var(--primary-color) !important;
  color: #991b1b !important;
}

/* Corrección para párrafos automáticos de CF7 */
/* .wpcf7 p, .wpcf7 br {
    display: none !important;
} */

.wpcf7 .form-header p,
.wpcf7 .contact-form-disclaimer,
.wpcf7 .contact-form-group label {
  display: block !important;
}

/* Footer Styles */
.site-footer {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer-main {
  padding: 80px 12px 50px;
}

.footer-main-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo img {
  max-width: 220px;
  margin-bottom: 25px;
}

.footer-desc {
  margin-bottom: 25px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--white);
  transition: 0.3s;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon.fb {
  background: #3b5998;
}
.social-icon.ig {
  background: #e1306c;
}
.social-icon.yt {
  background: #ff0000;
}
.social-icon.tk {
  background: #000000;
}
.social-icon.ln {
  background: #0077b5;
}

.social-icon:hover {
  transform: translateY(-3px);
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer-title {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ff6b5d;
}

/* Footer Services List */
.footer-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-services-list li {
  margin-bottom: 12px;
}

.footer-services-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
  display: block;
}

.footer-services-list a:hover {
  color: #ff8a7a;
  padding-left: 5px;
}

.footer-post-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-post-item:last-child {
  border-bottom: none;
}

.footer-post-link {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--white);
  line-height: 1.4;
  transition: 0.3s;
}

.footer-post-link:hover {
  color: #ff8a7a;
}

.footer-post-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact address {
  font-style: normal;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ff6b5d;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-text .label {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.contact-text p,
.contact-text a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
}

.contact-text a:hover {
  color: var(--white);
}

.footer-bottom {
  background-color: var(--dark-color);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.footer-navigation a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}

.footer-navigation a:hover {
  color: var(--white);
}

.footer-disclaimer {
  background-color: #050d17;
  padding: 30px 12px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.disclaimer-text p {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: justify;
}

/* =Nosotros Section (Reusable Component) =*/
.nosotros-section {
  position: relative;
  background: var(--light-bg);
}

.nosotros-section.nosotros-page {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .nosotros-section.nosotros-page {
    padding: 60px 12px;
  }
}

.nosotros-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 8vw, 4rem);
  align-items: center;
}

.nosotros-images-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.image-main,
.image-overlay {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-border-radius);
  animation: fadeInUp 0.8s ease-out;
  width: 80%;
}

.image-main img,
.image-overlay img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: -100px;
  right: -40px;
  width: 60%;
  z-index: 2;
  border: 3px solid white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-glow-bg {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(203, 21, 23, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -15px;
  right: 5px;
  z-index: 0;
}

/* Variante de una sola imagen (sin overlay) */
.nosotros-images-wrapper--single .image-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(22, 40, 78, 0.15);
}

.nosotros-images-wrapper--single .image-glow-bg {
  width: 280px;
  height: 280px;
  bottom: -40px;
  right: -30px;
}

.nosotros-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nosotros-text-content .section-subtitle {
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
}

.nosotros-text-content .section-title {
  color: var(--heading-color, #16284e);
  line-height: 1.1;
  margin: 0;
}

.nosotros-text-content .section-description {
  color: var(--text-color, #555);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

.nosotros-features-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.feature-list-item:hover {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 26px rgba(22, 40, 78, 0.08);
  transform: translateX(4px);
}

.feature-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(22, 40, 78, 0.08);
  color: var(--primary-color);
  transition: background 0.3s ease, color 0.3s ease;
}

.feature-list-icon svg {
  width: 24px;
  height: 24px;
}

.feature-list-item:hover .feature-list-icon {
  background: linear-gradient(135deg, var(--secondary-color), #f0584d);
  color: var(--white);
}

.feature-list-content h4 {
  margin: 0 0 0.35rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color, #16284e);
}

.feature-list-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Badge flotante de respaldo sobre la imagen */
.nosotros-badge {
  position: absolute;
  left: -18px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nosotros-badge__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #80868b;
}

.nosotros-badge__logo {
  width: 130px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .nosotros-badge {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }

  .nosotros-badge__logo {
    width: 100px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .nosotros-section__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 5vw, 2.5rem);
  }

  .image-overlay {
    width: 70%;
    bottom: -30px;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .nosotros-images-wrapper {
    min-height: 350px;
  }

  .image-overlay {
    width: 55%;
    bottom: -15px;
    right: 5px;
  }

  .nosotros-text-content {
    gap: 1rem;
  }

  .feature-list-item {
    gap: 0.75rem;
  }

  .feature-list-icon {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
}

/* =Nosotros Page old Styles =*/

/* Mission & Vision Section (Split Screen - Modern) */
.nosotros-mission-vision-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 12px;
}

.nosotros-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  align-items: stretch;
  background: var(--primary-color);
  border-radius: 30px;
  overflow: hidden;
  /* box-shadow: 0 40px 120px rgba(0, 0, 0, 0.15); */
}

.mission-vision__image {
  position: relative;
  overflow: hidden;
  order: 2;
}

.mission-vision__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.mission-vision__image:hover img {
  transform: scale(1.08);
}

.mission-vision__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(203, 21, 23, 0.25) 0%, rgba(203, 21, 23, 0.15) 100%);
  transition: backdrop-filter 0.5s ease;
}

.mission-vision__image:hover .mission-vision__image-overlay {
  background: linear-gradient(135deg, rgba(203, 21, 23, 0.15) 0%, rgba(203, 21, 23, 0.05) 100%);
}

.mission-vision__content {
  background: linear-gradient(135deg, var(--primary-color) 0%, #003d5c 100%);
  color: var(--white);
  padding: clamp(50px, 8vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  order: 1;
}

.mission-vision__block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp 0.8s ease-out;
}

.mission-vision__block:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.block-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.block-icon-box {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.mission-vision__block:hover .block-icon-box {
  background: rgba(203, 21, 23, 0.3);
  border-color: var(--secondary-color);
  transform: translateY(-4px);
}

.block-icon-box svg {
  width: 28px;
  height: 28px;
}

.block-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.block-description {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  letter-spacing: 0.3px;
}

/* Values Section - Modern */
.nosotros-values {
  padding: 32px 0;
  background: var(--light-bg)
}

.values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.values-tag {
  color: var(--secondary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--primary-color);
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-color);
  margin: 0;
  opacity: 0.85;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.33, 0.66, 0.66, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.value-card:nth-child(2) {
  animation-delay: 0.1s;
}

.value-card:nth-child(3) {
  animation-delay: 0.2s;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.value-icon-container {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-bottom: 28px;
  transition: all 0.5s ease;
  border: 2px solid rgba(203, 21, 23, 0.1);
}

.value-card:hover .value-icon-container {
  background: linear-gradient(135deg, var(--secondary-color), #c71516);
  color: var(--white);
  transform: rotate(8px) scale(1.1);
  border-color: var(--secondary-color);
}

.value-icon-container svg {
  width: 36px;
  height: 36px;
  transition: transform 0.4s ease;
}

.value-card:hover .value-icon-container svg {
  transform: scale(1.15);
}

.value-card-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.value-card:hover .value-card-title {
  color: var(--secondary-color);
}

.value-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0;
  opacity: 0.85;
  letter-spacing: 0.2px;
}

/* Responsive - Mission & Vision */
@media (max-width: 1024px) {
  .nosotros-mission-vision-wrapper {
    max-width: 100%;
    margin: 40px 0;
    padding: 0;
  }

  .nosotros-mission-vision {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    border-radius: 24px;
    margin: 0;
  }

  .mission-vision__image {
    order: -1;
    min-height: 350px;
  }

  .mission-vision__content {
    order: 1;
    padding: clamp(40px, 6vw, 60px);
    gap: 40px;
  }

  .mission-vision__block {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .nosotros-mission-vision-wrapper {
    margin: 30px 0;
    padding: 0 12px;
  }

  .nosotros-mission-vision {
    border-radius: 20px;
  }

  .mission-vision__image {
    min-height: 280px;
  }

  .mission-vision__content {
    padding: 30px 20px;
    gap: 32px;
  }

  .block-header {
    gap: 12px;
  }

  .block-icon-box {
    width: 48px;
    height: 48px;
  }

  .block-icon-box svg {
    width: 24px;
    height: 24px;
  }
}

/* Responsive - Values Grid */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .nosotros-values {
    padding: clamp(40px, 8vw, 60px) 12px;
  }

  .values-header {
    margin: 0 auto 50px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .value-card {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .value-icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .value-icon-container svg {
    width: 30px;
    height: 30px;
  }
}

/* Responsive Header & Footer */
@media (max-width: 768px) {
  .main-header-inner,
  .top-bar-inner {
    padding: 0 15px;
  }

  .site-branding .custom-logo {
    max-width: 120px;
  }

  .site-header.is-scrolled .site-branding .custom-logo {
    max-width: 100px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
  }

  .menu-toggle svg {
    width: 28px;
    height: 28px;
  }

  .main-navigation {
    position: relative;
    justify-content: flex-end;
  }

  .main-navigation ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 90dvw;
    background: var(--white);
    flex-direction: column;
    padding: 15px 0;
    gap: 0;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .main-navigation.is-active ul {
    display: flex;
  }

  .main-navigation li {
    width: 100%;
  }

  .main-navigation a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
  }

  .header-phone {
    display: none;
  }

  .footer-main-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .footer-about,
  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .top-bar-info {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .top-info-item.sms-item {
    font-size: 14px;
  }

  .top-bar-right {
    display: none; /* Hide social/CTA on very small to focus on contact */
  }

  .top-bar-inner {
    justify-content: center;
  }

  .header-phone {
    display: none;
  }

  .site-branding .custom-logo {
    max-width: 150px;
  }

  .footer-main-inner {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-contact {
    grid-column: span 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* =View Transitions
----------------------------------------------- */
@view-transition {
  navigation: auto;
}

.custom-logo {
  view-transition-name: main-logo;
}

.main-navigation {
  view-transition-name: main-nav;
}

.header-phone {
  view-transition-name: header-phone;
}

.top-bar {
  view-transition-name: top-bar;
}

/* Customize animations */
::view-transition-old(root) {
  animation:
    0.4s ease-in both fade-out,
    0.4s ease-in both scale-down;
}

::view-transition-new(root) {
  animation:
    0.4s ease-out both fade-in,
    0.4s ease-out both scale-up;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

@keyframes fade-out {
  to {
    opacity: 0;
  }
}

@keyframes scale-up {
  from {
    transform: scale(0.98);
  }
}

@keyframes scale-down {
  to {
    transform: scale(1.02);
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
  position: relative;
  background-color: var(--light-bg);
  padding: 170px 0 180px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .contact-hero {
    padding: 180px 12px;
  }
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.contact-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(203, 21, 23, 0.1);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  margin-bottom: 20px;
}

.contact-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 25px;
}

.contact-hero__title .text-secondary {
  color: var(--secondary-color);
}

.contact-hero__text {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 600px;
  margin-bottom: 40px;
}

.contact-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-color);
  font-weight: 500;
}

.feature-item svg {
  color: #10b981;
  width: 20px;
  height: 20px;
}

.contact-hero__image-container {
  position: relative;
}

.image-glow {
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  opacity: 0.05;
  filter: blur(80px);
  transform: translate(40px, 40px);
}

.contact-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 512px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  transition: transform 0.5s ease;
}

.contact-hero__image:hover {
  transform: translateY(-5px);
}

.contact-hero__floating-card {
  position: absolute;
  bottom: 12px;
  left: -20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--card-border-radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
  animation: bounce 3s infinite ease-in-out;
}

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

.floating-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-label {
  font-size: 0.75rem;
  color: var(--text-color);
  margin: 0;
}

.floating-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: rotate(180deg);
}

.hero-curve svg {
  width: 100%;
  height: 80px;
}

.hero-curve .shape-fill {
  fill: var(--white);
}

/* Contact Content Section */
.contact-content {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .contact-content {
    margin-top: -40px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--container-border-radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card--form {
  padding: 50px;
}

.contact-card__tag {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.contact-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 10px;
}

.contact-card__text {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Sidebar Styles */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-box {
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.sidebar-box--gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--tertiary-color) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.sidebar-box--gradient::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: var(--white);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(40px);
}

.sidebar-box__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}

.sidebar-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-feature {
  display: flex;
  gap: 15px;
}

.sidebar-feature__icon {
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--main-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-feature__icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.sidebar-feature__text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.sidebar-feature__text p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.sidebar-footer {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatars {
  display: flex;
}

.user-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  margin-right: -12px;
}

.sidebar-footer__text {
  font-size: 0.85rem;
  font-weight: 600;
}

.sidebar-box--simple {
  background: var(--white);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-box--simple__icon {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.sidebar-box--simple__icon svg {
  width: 40px;
  height: 40px;
}

.sidebar-box--simple__title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.sidebar-box--simple__text {
  font-size: 0.9rem;
  color: var(--text-color);
}

.sidebar-box--simple__link {
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.sidebar-box--simple__link:hover {
  text-decoration: underline;
}

/* Contact Info Section */
.contact-info {
  padding: 0 0 80px 0;
  background: var(--light-bg);
}

@media screen and (max-width: 768px) {
  .contact-info {
    padding: 0 12px 60px;
  }
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: var(--white);
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.info-card__icon {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
}

.info-card__icon svg {
  width: 28px;
  height: 28px;
}

.info-card__title {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.info-card__text {
  color: var(--text-color);
  margin-bottom: 20px;
}

.info-card__link {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
}

.info-card__link--small {
  font-size: 1.1rem;
  word-break: break-all;
}

.info-card__link:hover {
  color: var(--primary-color);
}

.info-card__address {
  font-style: normal;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .contact-hero__grid,
  .contact-main-grid,
  .contact-info__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 180px 12px 120px;
    text-align: center;
  }

  .contact-hero__text {
    margin: 0 auto 40px;
  }

  .contact-hero__features {
    justify-content: center;
  }

  .contact-hero__image-container {
    max-width: 320px;
    margin: 40px auto 0;
    order: -1;
  }

  .contact-card--form {
    padding: 30px;
  }
}

/* Contact Form 7 Layout & Components (Página de Contacto) */
.contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.contact-form-group .input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  z-index: 5;
}

.contact-form-group .input-icon svg {
  width: 18px;
  height: 18px;
}

.contact-form-group--with-icon .wpcf7-form-control:not([type="submit"]) {
  padding-left: 45px;
}

.contact-form-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0;
}

.contact-form-disclaimer {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.5;
  margin-top: -10px;
}

.contact-form-disclaimer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ============================================
   NOSOTROS PAGE STYLES
   ============================================ */

/* Hero Section */
.nosotros-hero {
  position: relative;
  background-color: var(--light-bg);
  /* height: calc(100dvh - 30px); */
  display: flex;
  align-items: center;
  padding: 160px 0 80px 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .nosotros-hero {
    height: auto;
    padding: 150px 12px 0;
  }
}

.nosotros-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.nosotros-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.nosotros-hero__header {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 95%;
}

.nosotros-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(203, 21, 23, 0.1);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 1rem;
}

.nosotros-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.nosotros-hero__title .text-primary {
  color: var(--secondary-color);
}

.nosotros-hero__text {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 600px;
}

.nosotros-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.nosotros-hero__features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-color);
  font-weight: 600;
}

.nosotros-hero__features .feature-item svg {
  color: #10b981;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nosotros-hero__image-container {
  position: relative;
}

.nosotros-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 512px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  transition: transform 0.5s ease;
}

@media screen and (max-width: 768px) {
  .nosotros-hero__image {
    height: auto;
  }
}

.nosotros-hero__image:hover {
  transform: translateY(-5px);
}

.image-glow {
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  opacity: 0.05;
  filter: blur(80px);
  transform: translate(40px, 40px);
}

/* Content Section - DEPRECATED: Use .nosotros-section instead */
.nosotros-content {
  padding: 100px 0;
  background-color: var(--white);
}

/* .nosotros-content__grid, .image-main, .image-overlay, .nosotros-text-content, 
   .nosotros-features-list, .feature-list-item, .feature-list-icon, 
   .feature-list-content - All deprecated, use .nosotros-section component */

/* Founder Section NEW */
.nosotros-founder .container {
  padding: 60px 0 120px;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .nosotros-founder .container {
    padding: 40px 12px;
    gap: 40px;
  }
}

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

.founder-header__subtitle {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
}

.founder-header__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
}

.founder-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.founder-card__image {
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.founder-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .founder-card__image img {
    mask-image: linear-gradient(black 80%, transparent);
  }
}

.founder-card__content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-card__name {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
  margin: 0;
}

.founder-card__role {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin: 0;
}

.founder-card__bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.founder-card__socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 1024px) {
  .nosotros-hero__grid,
  .nosotros-content__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nosotros-hero__text {
    margin: 0 auto 40px;
  }

  .nosotros-hero__features {
    justify-content: center;
  }

  .nosotros-hero__image-container {
    order: -1;
    max-width: 200px;
    margin: 40px auto 0;
  }

  .founder-card {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .founder-card__image {
    min-height: 350px;
  }

  .founder-card__content {
    padding: 40px;
    text-align: center;
  }

  .founder-card__socials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nosotros-content {
    padding: 60px 0;
  }

  .nosotros-content__grid {
    gap: 40px;
  }

  .founder-card {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  }

  .founder-card__image {
    min-height: 280px;
  }

  .founder-card__content {
    padding: 24px;
    gap: 16px;
  }

  .founder-card__socials {
    gap: 12px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

/* BLOG STYLES */
.site-content {
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* =========================================
   COMPONENT: BLOG HERO (Destacado)
   ========================================= */
.blog-hero {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--container-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .blog-hero {
    max-width: 95%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .blog-hero {
    flex-direction: row;
    min-height: 450px;
  }
}

.blog-hero__media {
  position: relative;
  width: 100%;
  min-height: 250px;
}

@media (min-width: 768px) {
  .blog-hero__media {
    width: 60%; /* w-3/5 */
  }
}

.blog-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-hero__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .blog-hero__content {
    width: 40%; /* w-2/5 */
    padding: 3rem;
  }
}

.blog-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem); /* text-3xl md:text-4xl */
  font-weight: 900; /* font-black */
  line-height: 1.1;
  margin: 0;
}

.blog-hero__title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-hero__title a:hover {
  color: var(--accent-color);
}

.blog-hero__excerpt {
  color: var(--text-color); /* text-slate-600 */
  font-size: 1rem;
  line-height: 1.6;
}

/* Badge del Hero */
.blog-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem; /* text-xs */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  width: fit-content;
}

.blog-badge--primary {
  background-color: rgba(203, 21, 23, 0.1); /* bg-primary/10 */
  color: var(--accent-color); /* text-primary */
}

/* --- BLOG: FILTROS DE CATEGORÍA --- */
.blog-filters-section {
  max-width: 1366px;
  margin: 0 auto;
  overflow-x: auto; /* Scroll horizontal en móviles */
  white-space: nowrap;
  padding-bottom: 1rem; /* Espacio para la barra de scroll */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
/* Ocultar barra scroll estética */
.blog-filters-section::-webkit-scrollbar {
  display: none;
}

.blog-filters-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #94a3b8; /* Slate 400 */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 1rem;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--text-color);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--accent-color); /* Primary */
  color: var(--white);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .blog-filters-section {
    max-width: 100vw;
    padding-left: 1rem;
    padding-right: 1rem;
    white-space: normal;
  }
  .blog-filters-container {
    flex-wrap: wrap;
    overflow-x: auto;
    gap: 0.5rem;
  }
  .filter-label {
    flex: 0 0 auto;
    margin-right: 0.5rem;
    font-size: 0.8rem;
  }
  .filter-pill {
    flex: 0 0 auto;
    min-width: max-content;
    font-size: 0.92rem;
    padding: 0 1rem;
  }
}

/* BLOG: CONTENT STYLES */
.blog-layout {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 32px;
}

@media screen and (max-width: 768px) {
  .blog-layout {
    padding: 0 12px 120px;
  }
}

.blog-main {
  grid-column: span 6 / span 6;
}

.blog-sidebar {
  grid-column: span 2 / span 2;
  grid-column-start: 7;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 140px;
}

/* --- BLOG: SIDEBAR WIDGETS --- */

/* Widget: Populares */
.widget-box {
  background: var(--white);
  border-radius: var(--container-border-radius);
  padding: 1.5rem;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.popular-item {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.popular-index {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-color);
  opacity: 0.3;
  line-height: 1;
  transition: opacity 0.3s;
}

.popular-item:hover .popular-index {
  opacity: 1;
}

.popular-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: var(--heading-color);
  transition: color 0.3s;
}

.popular-item:hover h4 {
  color: var(--accent-color);
}

.popular-meta {
  font-size: 0.75rem;
  color: #94a3b8; /* Slate 400 */
}

/* Widget: Newsletter (Estilo Dark Navy) */
.widget-newsletter {
  background-color: var(--tertiary-color); /* Navy Deep */
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: none;
}

/* Efecto "Blob" de luz */
.newsletter-glow {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 10rem;
  height: 10rem;
  background-color: rgba(203, 21, 23, 0.2); /* Primary con opacidad */
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit {
  background: var(--accent-color);
  color: var(--white);
  width: 100%;
  padding: 0.75rem;
  border-radius: 99px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-submit:hover {
  background: #a30f11;
}

/* =========================================
   COMPONENT: NEWS CARD (Grid Item)
   ========================================= */
.news-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius); /* rounded-xl */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.news-card__header {
  position: relative;
  aspect-ratio: 16/9; /* aspect-video */
  overflow: hidden;
}

.news-card__link-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__link-img img {
  transform: scale(1.05);
}

/* Badge flotante sobre la imagen */
.news-card__category-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--accent-color); /* bg-primary */
  color: var(--white);
  font-size: 0.65rem; /* text-[10px] */
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  z-index: 10;
}

.news-card__body {
  padding: 1.25rem; /* p-3 + px-2 pb-2 adjustments */
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem; /* text-xs */
  color: #94a3b8; /* text-slate-400 */
  margin-bottom: 0.75rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.meta-item svg {
  width: 14px;
  height: 14px;
}

.news-card__title {
  font-size: 1.125rem; /* text-lg */
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}

.news-card__title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s;
}

.news-card:hover .news-card__title a {
  color: var(--accent-color);
}

.news-card__excerpt {
  font-size: 0.875rem; /* text-sm */
  color: var(--text-color); /* text-slate-500 */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* line-clamp-2 */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

/* ========================================= */
/* RESPONSIVE: BLOG LAYOUT */
/* ========================================= */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }

  .blog-main {
    grid-column: span 4 / span 4;
  }

  .blog-sidebar {
    grid-column: span 2 / span 2;
    grid-column-start: 5;
  }
}

@media (max-width: 768px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-main {
    grid-column: 1;
  }

  .blog-sidebar {
    grid-column: 1;
    order: 2;
  }
}

@media (max-width: 600px) {
  .blog-layout {
    gap: 16px;
  }

  .widget-box {
    padding: 1.25rem;
  }

  .news-card__body {
    padding: 1rem;
  }

  .news-card__title {
    font-size: 1rem;
  }

  .news-card__excerpt {
    font-size: 0.8125rem;
  }
}

/* =========================================
   SINGLE POST STYLES
   ========================================= */

/* SINGLE POST HERO */
.blog-single-hero {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f8f9fa" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  color: var(--white);
  overflow: hidden;
}

.blog-single-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blog-single-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-single-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

.blog-single-hero .container {
  position: relative;
  z-index: 3;
}

.blog-single-hero__content {
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .blog-single-hero {
    padding: 40px 12px;
  }

  .blog-single-hero__content {
    max-width: 100%;
  }
}

.blog-single-hero__category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.blog-single-hero__category:hover {
  background-color: #a30f11;
}

.blog-single-hero__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.blog-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 1rem;
}

.blog-single-hero__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-single-hero__meta .meta-item svg {
  width: 20px;
  height: 20px;
  opacity: 0.9;
}

/* SINGLE POST CONTENT */
.blog-single-content {
  margin-bottom: 3rem;
}

.blog-single-content__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-color);
}

.blog-single-content__body p {
  margin-bottom: 1.5rem;
}

.blog-single-content__body h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.blog-single-content__body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.blog-single-content__body ul,
.blog-single-content__body ol {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.blog-single-content__body li {
  margin-bottom: 0.75rem;
}

.blog-single-content__body blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #64748b;
}

.blog-single-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--card-border-radius);
  margin: 2rem 0;
}

.blog-single-content__body a {
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-color);
  transition: color 0.3s;
}

.blog-single-content__body a:hover {
  color: #a30f11;
  border-bottom-color: #a30f11;
}

/* TAGS */
.blog-single-content__tags {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.blog-single-content__tags h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-badge {
  display: inline-block;
  background-color: #f1f5f9;
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.tag-badge:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

/* COMMENTS */
.blog-single-content__comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Comments Section Styling */
.blog-single-content__comments h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.blog-single-content__comments .comments-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.blog-single-content__comments ol.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-single-content__comments li.comment {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.blog-single-content__comments li.comment:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-single-content__comments .comment-author {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.blog-single-content__comments .comment-author .fn a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-single-content__comments .comment-author .fn a:hover {
  color: var(--accent-color);
}

.blog-single-content__comments .comment-meta {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.blog-single-content__comments .comment-meta a {
  color: #94a3b8;
  text-decoration: none;
}

.blog-single-content__comments .comment-meta a:hover {
  color: var(--accent-color);
}

.blog-single-content__comments .comment-body {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.blog-single-content__comments .comment-body p {
  margin-bottom: 1rem;
}

.blog-single-content__comments .comment-body p:last-child {
  margin-bottom: 0;
}

.blog-single-content__comments .reply {
  margin-top: 1rem;
}

.blog-single-content__comments .reply a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.blog-single-content__comments .reply a:hover {
  color: #a30f11;
}

/* Nested Comments */
.blog-single-content__comments .children {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 2rem;
}

.blog-single-content__comments .children li.comment {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  border: none;
  margin-bottom: 1rem;
}

/* Comment Form */
.blog-single-content__comments .comment-form {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.blog-single-content__comments .comment-form .comment-form-comment {
  margin-bottom: 1.5rem;
}

.blog-single-content__comments .comment-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

.blog-single-content__comments .comment-form input[type="text"],
.blog-single-content__comments .comment-form input[type="email"],
.blog-single-content__comments .comment-form input[type="url"] {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  font-size: 1rem;
}

.blog-single-content__comments .comment-form input[type="text"]:focus,
.blog-single-content__comments .comment-form input[type="email"]:focus,
.blog-single-content__comments .comment-form input[type="url"]:focus,
.blog-single-content__comments .comment-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(203, 21, 23, 0.1);
}

.blog-single-content__comments .comment-form p {
  margin-bottom: 1rem;
}

.blog-single-content__comments .comment-form .comment-form-cookies-consent {
  margin: 1.5rem 0;
}

.blog-single-content__comments .comment-form input[type="submit"] {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--card-border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.blog-single-content__comments .comment-form input[type="submit"]:hover {
  background-color: #a30f11;
}

/* AUTHOR BOX */
.blog-author-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  padding: 2rem;
  margin: 3rem 0;
}

.author-box__header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.author-box__avatar {
  flex-shrink: 0;
}

.author-box__avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-box__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-box__name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.author-box__name a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s;
}

.author-box__name a:hover {
  color: var(--accent-color);
}

.author-box__role {
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  color: #94a3b8;
}

.author-box__bio {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-box__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.author-box__link:hover {
  color: #a30f11;
}

.author-box__link svg {
  width: 16px;
  height: 16px;
}

/* RELATED POSTS */
.blog-related-posts {
  margin-top: 4rem;
}

.blog-related-posts__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.blog-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================================
   RESPONSIVE: SINGLE POST
   ========================================= */

@media (max-width: 768px) {
  .blog-single-hero {
    padding: 40px 12px;
  }

  .blog-single-hero__title {
    font-size: 1.75rem;
  }

  .blog-single-hero__meta {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .blog-single-content__body {
    font-size: 1rem;
  }

  .blog-single-content__body h2 {
    font-size: 1.5rem;
  }

  .blog-single-content__body h3 {
    font-size: 1.25rem;
  }

  .blog-author-box {
    padding: 1.5rem;
  }

  .author-box__header {
    gap: 1rem;
  }

  .blog-related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .blog-single-hero {
    padding: 30px 12px;
  }

  .blog-single-hero__title {
    font-size: 1.5rem;
  }

  .blog-single-hero__meta {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .blog-single-content__body {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .blog-single-content__body p {
    margin-bottom: 1rem;
  }

  .blog-single-content__body h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }

  .blog-single-content__body h3 {
    font-size: 1.1rem;
  }

  .blog-single-content__body blockquote {
    padding-left: 1rem;
    font-size: 0.95rem;
  }

  .blog-author-box {
    padding: 1rem;
    margin: 2rem 0;
  }

  .author-box__avatar img {
    width: 60px;
    height: 60px;
  }

  .author-box__name {
    font-size: 1.1rem;
  }

  .blog-related-posts__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .blog-related-posts__title {
    font-size: 1.5rem;
  }

  /* Responsive Comments */
  .blog-single-content__comments .comment-form textarea {
    min-height: 100px;
  }

  .blog-single-content__comments .children {
    margin-left: 1rem;
  }

  .blog-single-content__comments .children li.comment {
    padding: 1rem;
  }

  .blog-single-content__comments .comment-author {
    font-size: 1rem;
  }
}

/* =========================================
   FAQ PAGE STYLES
   ========================================= */

/* FAQ HERO */
.faq-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.faq-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-hero__title {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.faq-hero__title svg {
  width: 40px;
  height: 40px;
}

.faq-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

/* FAQ WRAPPER */
.faq-wrapper {
  padding: 60px 0;
}

/* FAQ CONTENT */
.faq-content {
  margin-bottom: 60px;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-color: var(--accent-color);
}

/* FAQ TOGGLE BUTTON */
.faq-toggle {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  text-align: left;
}

.faq-toggle:hover {
  color: var(--accent-color);
  background-color: #f8f9fa;
}

.faq-toggle__text {
  flex: 1;
}

.faq-toggle__icon {
  flex-shrink: 0;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
}

.faq-item.active .faq-toggle__icon {
  transform: rotate(180deg);
}

/* FAQ ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer__content {
  padding: 0 1.5rem 1.5rem;
  background-color: #f8f9fa;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-answer__content p {
  margin: 0.5rem 0;
}

.faq-answer__content p:last-child {
  margin-bottom: 0;
}

/* FAQ CONTACT CTA */
.faq-contact-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f5 100%);
  border: 2px solid var(--border-color);
  border-radius: var(--card-border-radius);
  padding: 3rem;
  text-align: center;
  margin-top: 60px;
}

.faq-contact-cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq-contact-cta__description {
  font-size: 1.05rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.faq-contact-cta__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-contact-cta__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: var(--card-border-radius);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.faq-contact-cta__actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
}

.faq-contact-cta__actions .btn-primary:hover {
  background-color: #a30f11;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(203, 21, 23, 0.3);
}

.faq-contact-cta__actions .btn-secondary {
  background-color: var(--white);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.faq-contact-cta__actions .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .faq-contact-cta__actions {
    flex-direction: column;
    gap: 12px;
  }
  .faq-contact-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   RESPONSIVE: FAQ PAGE
   ========================================= */

@media (max-width: 1024px) {
  .faq-hero {
    padding: 60px 0 40px;
  }

  .faq-hero__title {
    font-size: 2rem;
  }

  .faq-wrapper {
    padding: 40px 12px;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 50px 0 30px;
  }

  .faq-hero::before {
    width: 300px;
    height: 300px;
  }

  .faq-hero__title {
    font-size: 1.75rem;
    gap: 0.75rem;
  }

  .faq-hero__title svg {
    width: 32px;
    height: 32px;
  }

  .faq-hero__subtitle {
    font-size: 1rem;
  }

  .faq-wrapper {
    padding: 30px 12px;
  }

  .faq-toggle {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .faq-contact-cta {
    padding: 2rem;
  }

  .faq-contact-cta__title {
    font-size: 1.5rem;
  }

  .faq-contact-cta__description {
    font-size: 1rem;
  }

  .faq-contact-cta__actions {
    gap: 1rem;
  }

  .faq-contact-cta__actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    flex: 1;
  }
}

@media (max-width: 600px) {
  .faq-hero {
    padding: 40px 0 20px;
  }

  .faq-hero__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .faq-hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .faq-wrapper {
    padding: 20px 12px;
  }

  .faq-accordion {
    gap: 0.75rem;
  }

  .faq-toggle {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer__content {
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
  }

  .faq-contact-cta {
    padding: 1.5rem;
    margin-top: 40px;
  }

  .faq-contact-cta__title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .faq-contact-cta__description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .faq-contact-cta__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .faq-contact-cta__actions .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    justify-content: center;
  }
}

/* =========================================
   TESTIMONIALS PAGE STYLES
   ========================================= */

/* TESTIMONIALS HERO */
.testimonials-hero {
  position: relative;
  height: auto;
  min-height: 50dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .testimonials-hero {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.testimonials-hero__background::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.testimonials-hero .container {
  position: relative;
  z-index: 2;
}

.testimonials-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
  color: var(--white);
}

/* Left Column */
.testimonials-hero__left {
  text-align: left;
}

/* Right Column */
.testimonials-hero__right {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.testimonials-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(203, 21, 23, 0.1);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 1rem;
}

.testimonials-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.testimonials-hero__title--accent {
  color: var(--accent-color);
  display: block;
}

.testimonials-hero__subtitle {
  color: var(--text-color);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.testimonials-hero__video {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 600px;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.testimonials-hero__video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonials-hero__video:hover .testimonials-hero__video-thumbnail {
  transform: scale(1.05);
}

/* Play Button */
.testimonials-hero__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(203, 21, 23, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(203, 21, 23, 0.4);
}

.testimonials-hero__video-play:hover {
  background: var(--accent-color);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 15px 40px rgba(203, 21, 23, 0.6);
}

.testimonials-hero__video-play svg {
  width: 36px;
  height: 36px;
}

/* Modal Styles */
.testimonials-hero__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.testimonials-hero__modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-hero__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.testimonials-hero__modal-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonials-hero__modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
  border-radius: 50%;
}

.testimonials-hero__modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.testimonials-hero__modal-video {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.testimonials-hero__modal-video lite-youtube {
  width: 100%;
  height: 100%;
}

/* Swiper Carousel Styles */
.testimonials-hero__swiper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--card-border-radius);
  overflow: visible;
  margin: 0 auto;
}

.testimonials-hero__swiper .swiper-wrapper {
  width: 100% !important;
}

.testimonials-hero__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  width: 100% !important;
  max-width: 100% !important;
  flex-shrink: 0 !important;
}

/* Navigation Buttons - Custom (no Swiper CSS) */
.testimonials-hero__swiper-prev,
.testimonials-hero__swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  color: var(--secondary-color);
  border: none;
  padding: 0;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0.2;
}

.testimonials-hero__swiper-prev:hover,
.testimonials-hero__swiper-next:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 15px 40px rgba(203, 21, 23, 0.4);
  opacity: 1;
}

.testimonials-hero__swiper-prev {
  left: 16px;
}

.testimonials-hero__swiper-next {
  right: 16px;
}

/* Override Swiper default button styles */
.testimonials-hero__swiper .swiper-button-prev::after,
.testimonials-hero__swiper .swiper-button-next::after {
  display: none;
}

/* Pagination Dots - Below the video */
.testimonials-hero__swiper-pagination {
  position: absolute !important;
  bottom: -50px;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonials-hero__swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(16, 66, 104, 0.4) !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
}

.testimonials-hero__swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color) !important;
  width: 28px !important;
  border-radius: 5px;
}

.testimonials-hero__video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.testimonials-hero__video:hover .testimonials-hero__video-image {
  opacity: 0.7;
}

.testimonials-hero__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(203, 21, 23, 0.4);
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonials-hero__video:hover .testimonials-hero__play-button {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 15px 40px rgba(203, 21, 23, 0.6);
}

.testimonials-hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonials-hero__actions .btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--card-border-radius);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.testimonials-hero__actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #a00d10 100%);
  color: var(--white);
}

.testimonials-hero__actions .btn-primary:hover {
  background: linear-gradient(135deg, #a00d10 0%, #7a0a0c 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(203, 21, 23, 0.4);
}

.testimonials-hero__actions .btn-secondary {
  background-color: var(--white);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.testimonials-hero__actions .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE: TESTIMONIALS HERO
   ========================================= */

@media (max-width: 1024px) {
  .testimonials-hero {
    padding: 80px 0 50px;
    height: auto;
  }

  .testimonials-hero__content {
    gap: 40px;
  }

  .testimonials-hero__right {
    max-width: 450px;
  }

  .testimonials-hero__title {
    font-size: 2.5rem;
  }

  .testimonials-hero__subtitle {
    font-size: 1.1rem;
  }

  .testimonials-hero__swiper {
    max-width: 450px;
  }

  .testimonials-hero__swiper-prev {
    left: 12px;
  }

  .testimonials-hero__swiper-next {
    right: 12px;
  }
}

@media (max-width: 768px) {
  .testimonials-hero {
    padding: 60px 0 40px;
    height: auto;
  }

  .testimonials-hero__background::before {
    width: 300px;
    height: 300px;
  }

  .testimonials-hero__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

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

  .testimonials-hero__right {
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .testimonials-hero__title {
    font-size: 2rem;
  }

  .testimonials-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-hero__actions {
    gap: 1rem;
    justify-content: center;
  }

  .testimonials-hero__actions .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .testimonials-hero__swiper {
    max-width: 100%;
    width: 100%;
  }

  .testimonials-hero__video {
    aspect-ratio: 16 / 9;
  }

  .testimonials-hero__swiper-prev,
  .testimonials-hero__swiper-next {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .testimonials-hero {
    padding: 50px 12px 30px;
    height: auto;
  }

  .testimonials-hero__badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .testimonials-hero__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .testimonials-hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-hero__right {
    width: 100%;
    max-width: calc(100vw - 24px);
  }

  .testimonials-hero__swiper {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .testimonials-hero__video {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }

  .testimonials-hero__video-play {
    width: 60px;
    height: 60px;
  }

  .testimonials-hero__video-play svg {
    width: 32px;
    height: 32px;
  }

  .testimonials-hero__swiper-prev,
  .testimonials-hero__swiper-next {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .testimonials-hero__swiper-prev {
    left: 10px;
  }

  .testimonials-hero__swiper-next {
    right: 10px;
  }

  .testimonials-hero__actions {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonials-hero__actions .btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .testimonials-hero__swiper-pagination {
    bottom: -45px !important;
    gap: 4px !important;
  }

  .testimonials-hero__swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .testimonials-hero__swiper-pagination .swiper-pagination-bullet-active {
    width: 20px !important;
  }
}

/* TESTIMONIALS STATS/TRUST SECTION */
.testimonials-stats {
  background: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  position: relative;
}

.testimonials-stats__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

.testimonials-stats__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  transition: all 0.3s ease;
}

.testimonials-stats__item:hover {
  background-color: #f8f9fa;
}

.testimonials-stats__item--featured {
  background: linear-gradient(
    135deg,
    rgba(16, 66, 104, 0.05) 0%,
    rgba(203, 21, 23, 0.05) 100%
  );
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonials-stats__item--featured:hover {
  background: linear-gradient(
    135deg,
    rgba(16, 66, 104, 0.08) 0%,
    rgba(203, 21, 23, 0.08) 100%
  );
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(203, 21, 23, 0.15);
}

.testimonials-stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: #f0f4f8;
  border-radius: 50%;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.testimonials-stats__icon--google {
  background: linear-gradient(135deg, #4285f4 0%, #ea4335 100%);
  color: var(--white);
}

.testimonials-stats__item:hover .testimonials-stats__icon {
  background-color: var(--accent-color);
  color: var(--white);
  transform: scale(1.1);
}

.testimonials-stats__item--featured:hover .testimonials-stats__icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #a30f11 100%);
}

.testimonials-stats__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.testimonials-stats__text {
  flex: 1;
}

.testimonials-stats__number {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.testimonials-stats__star {
  color: var(--accent-color);
  font-size: 1.4em;
  margin-left: 0.25rem;
  display: inline-block;
}

.testimonials-stats__label {
  font-size: 0.95rem;
  color: var(--text-color);
  font-weight: 500;
}

/* =========================================
   RESPONSIVE: TESTIMONIALS STATS
   ========================================= */

@media (max-width: 1024px) {
  .testimonials-stats {
    padding: 50px 12px;
  }

  .testimonials-stats__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-stats__item {
    gap: 1rem;
    padding: 1.25rem;
  }

  .testimonials-stats__icon {
    width: 50px;
    height: 50px;
  }

  .testimonials-stats__icon svg {
    width: 28px;
    height: 28px;
  }

  .testimonials-stats__number {
    font-size: 1.5rem;
  }

  .testimonials-stats__label {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .testimonials-stats {
    padding: 40px 12px;
  }

  .testimonials-stats__content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .testimonials-stats__item {
    gap: 1rem;
    padding: 1rem;
  }

  .testimonials-stats__icon {
    width: 48px;
    height: 48px;
  }

  .testimonials-stats__icon svg {
    width: 24px;
    height: 24px;
  }

  .testimonials-stats__number {
    font-size: 1.35rem;
  }

  .testimonials-stats__label {
    font-size: 0.875rem;
  }
}

@media (max-width: 600px) {
  .testimonials-stats {
    padding: 30px 12px;
  }

  .testimonials-stats__content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonials-stats__item {
    gap: 0.75rem;
    padding: 0.875rem;
  }

  .testimonials-stats__icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }

  .testimonials-stats__icon svg {
    width: 22px;
    height: 22px;
  }

  .testimonials-stats__number {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }

  .testimonials-stats__label {
    font-size: 0.8rem;
  }
}

/* =Testimonials Social Feed (Phase 3)
----------------------------------------------- */

.testimonials-social-feed {
  /* background: linear-gradient(135deg, var(--light-bg) 0%, #FFFFFF 100%); */
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .testimonials-social-feed {
    padding: 32px 12px 0;
  }
}

.testimonials-social-feed::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(203, 21, 23, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-social-feed::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(16, 66, 104, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Section Header */
.testimonials-feed-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.testimonials-feed-header .section-label {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(203, 21, 23, 0.1);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.testimonials-feed-header .section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: var(--heading-color);
}

.testimonials-feed-header .section-subtitle {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Testimonials filter buttons */
.testimonials-filter-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.filter-btn.active {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.filter-btn:hover,
.filter-btn.active:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  border: 2px solid var(--primary-color);
}

/* Testimonial items animation */
.testimonial-item {
  animation: fadeIn 0.3s ease-in;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Masonry Grid - CSS Columns */
.testimonials-grid {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .testimonials-grid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Testimonial Cards - Base Styles */
.testimonials-page-card {
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

/* Google Card - Larger size in masonry */
.testimonials-page-card.card-google {
  break-inside: avoid;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    column-count: 2;
    column-gap: 16px;
  }

  .testimonials-page-card {
    margin-bottom: 16px;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    column-count: 1;
    column-gap: 0;
  }

  .testimonials-page-card {
    margin-bottom: 16px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials-page-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

/* Card Image Container */
.testimonials-page-card .card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.testimonials-page-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonials-page-card:hover .card-image img {
  transform: scale(1.05);
}

/* Card Overlay */
.card-overlay {
   position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
  padding: 16px;
}

.testimonials-page-card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.2);
}

/* Platform Badge */
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: absolute;
  top: 12px;
  right: 12px;
}

.platform-badge i {
  font-size: 16px;
}

.platform-badge.instagram-badge {
  color: #e1306c;
}

.platform-badge.instagram-badge .badge-text {
  color: #e1306c;
}

.platform-badge.youtube-badge {
  color: #ff0000;
}

.platform-badge.youtube-badge .badge-text {
  color: #ff0000;
}

/* Play Button for YouTube */
.play-button-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.play-button {
  width: 56px;
  height: 56px;
  color: #fff;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
}

.play-button i {
  color: white;
  font-size: 28px;
  margin-left: 4px;
}

.youtube-card:hover .play-button {
  transform: scale(1.2);
  background: rgba(255, 0, 0, 1);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.6);
}

/* Card Content */
.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-text {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: auto;
  line-height: 1.5;
  display: block;
  overflow: visible;
}

/* Card Footer */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.card-date {
  font-size: 0.75rem;
  color: #999999;
  font-weight: 500;
}

/* Card Link Buttons */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.card-link i {
  font-size: 14px;
}

/* Instagram Link Button */
.instagram-link {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.1);
}

.instagram-link:hover {
  color: white;
  background: linear-gradient(135deg, #e1306c 0%, #c2185b 100%);
  transform: translateX(2px);
}

/* YouTube Link Button */
.youtube-link {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
}

.youtube-link:hover {
  color: white;
  background: linear-gradient(135deg, #ff0000 0%, #d50000 100%);
  transform: translateX(2px);
}

/* ============================================
   SOCIAL CTA SECTION - BASE STYLES
   ============================================ */

.social-cta-section {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.social-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1366px;
  margin: 0 auto;
}

.social-cta-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.adriana-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: block;
  mask-image: linear-gradient(black 50%, transparent 100%);
}

.photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-color);
}

.photo-badge svg {
  width: 20px;
  height: 20px;
  color: var(--accent-color);
}

.social-cta-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-social-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
  margin: 0;
}

.social-intro {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.social-buttons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.social-cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-cta-button:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(203, 21, 23, 0.1);
  transform: translateY(-1px);
}

.social-cta-button.social-cta-instagram:hover .social-cta-icon,
.social-cta-button.social-cta-instagram:hover .social-cta-text {
  color: #e1306c;
}

.social-cta-button.social-cta-instagram .social-cta-icon {
  color: #e1306c;
}

.social-cta-button.social-cta-youtube:hover .social-cta-icon,
.social-cta-button.social-cta-youtube:hover .social-cta-text {
  color: #ff0000;
}

.social-cta-button.social-cta-youtube .social-cta-icon {
  color: #ff0000;
}

.social-cta-button.social-cta-google:hover .social-cta-icon,
.social-cta-button.social-cta-google:hover .social-cta-text {
  color: #4285f4;
}

.social-cta-button.social-cta-google .social-cta-icon {
  color: #4285f4;
}

.social-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-cta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.social-cta-text {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
  line-height: 1.3;
}

.social-cta-desc {
  color: var(--text-color);
  font-size: 0.85rem;
  line-height: 1.3;
  opacity: 0.8;
}

.social-cta-badge {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  min-width: 50px;
  text-align: right;
  flex-shrink: 0;
}

/* Primary CTA */
.cta-primary {
  padding-top: 12px;
  text-align: center;
}

.cta-final-text {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 12px;
  font-weight: 500;
}

.cta-phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* background: linear-gradient(135deg, var(--primary-color) 0%, #A00D10 100%); */
  background-color: var(--secondary-color);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 24px rgba(203, 21, 23, 0.3);
  border: 2px solid transparent;
}

.cta-phone-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(203, 21, 23, 0.4);
  background: linear-gradient(135deg, #a00d10 0%, #7a0a0c 100%);
}

.cta-phone-button:active {
  transform: translateY(-1px);
}

.cta-phone-button svg {
  width: 20px;
  height: 20px;
}

/* Tablet Breakpoint - 1024px */
@media (max-width: 1024px) {
  .social-cta-section {
    padding: 60px 12px;
  }

  .social-cta-wrapper {
    gap: 40px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .photo-container {
    max-width: 350px;
  }
}

/* Tablet Breakpoint - 768px */
@media (max-width: 768px) {
  .social-cta-section {
    padding: 50px 12px;
  }

  .social-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .social-cta-photo {
    order: -1;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-intro {
    font-size: 1rem;
  }

  .cta-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .photo-container {
    max-width: 300px;
  }

  .social-buttons-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Breakpoint - 600px */
@media (max-width: 600px) {
  .social-cta-section {
    padding: 40px 12px;
  }

  .social-cta-section::before {
    width: 300px;
    height: 300px;
    top: -30%;
    right: -25%;
  }

  .social-cta-section::after {
    width: 250px;
    height: 250px;
    bottom: -20%;
    left: -25%;
  }

  .cta-header {
    margin-bottom: 24px;
  }

  .cta-subtitle {
    font-size: 0.75rem;
  }

  .cta-title {
    font-size: 1.5rem;
    margin: 12px 0 8px 0;
  }

  .cta-intro {
    font-size: 0.9rem;
  }

  .cta-bio {
    margin: 16px 0 24px 0;
    padding: 16px;
  }

  .cta-bio p {
    font-size: 0.85rem;
  }

  .cta-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .stat-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .social-intro {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .social-cta-button {
    padding: 12px 14px;
    gap: 12px;
  }

  .social-cta-icon {
    width: 40px;
    height: 40px;
  }

  .social-cta-icon svg {
    width: 20px;
    height: 20px;
  }

  .social-cta-text {
    font-size: 0.85rem;
  }

  .social-cta-desc {
    font-size: 0.75rem;
    display: none;
  }

  .social-cta-badge {
    font-size: 0.75rem;
    min-width: auto;
  }

  .cta-final-text {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .cta-phone-button {
    padding: 12px 20px;
    font-size: 0.8rem;
    width: 100%;
  }

  .photo-container {
    max-width: 250px;
  }

  .photo-badge {
    padding: 10px 14px;
    font-size: 0.8rem;
    bottom: auto;
    right: -34px;
    left: auto;
    top: 60px;
  }

  .photo-badge svg {
    width: 16px;
    height: 16px;
  }
}

/* =Google Reviews Cards
----------------------------------------------- */

/* Base Styles for Google Cards */
.card-google {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  border: 1px solid #e8eaed;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.card-google:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #4285f4;
  transform: translateY(-4px);
}

.card-header {
  margin-bottom: 12px;
}

.review-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 12px;
}

.reviewer-info {
  display: flex;
  gap: 10px;
  flex: 1;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer-name-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Avatar with initial */
.reviewer-avatar.avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #cb1517 0%, #104268 100%);
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #202124;
  margin: 0 0 4px 0;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars .star {
  color: #fbbc04;
  font-size: 0.9rem;
  line-height: 1;
}

/* Platform Badge for Google */
.platform-badge.google-badge {
  background: #ffffff;
  color: #4285f4;
  border: 1px solid #dadce0;
  padding: 4px 8px;
  font-size: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.platform-badge.google-badge .badge-text {
  font-weight: 500;
}

.platform-badge.google-badge .badge-text {
  color: #4285f4;
}

/* Google Link Button */
.google-link {
  color: #4285f4;
  background: rgba(66, 133, 244, 0.1);
}

.google-link:hover {
  color: white;
  background: linear-gradient(135deg, #4285f4 0%, #1967d2 100%);
  transform: translateX(2px);
}

/* Responsive Google Cards */
@media (max-width: 1024px) {
  .card-google {
    padding: 14px;
  }

  .reviewer-avatar {
    width: 36px;
    height: 36px;
  }

  .reviewer-name {
    font-size: 0.9rem;
  }

  .review-stars .star {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .card-google {
    padding: 12px;
  }

  .review-header {
    margin-bottom: 10px;
  }

  .reviewer-info {
    gap: 8px;
  }

  .reviewer-details {
    gap: 2px;
  }

  .reviewer-avatar {
    width: 32px;
    height: 32px;
  }

  .reviewer-name {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .review-stars .star {
    font-size: 0.8rem;
  }

  .card-text {
    font-size: 0.8rem;
  }

  .platform-badge.google-badge {
    padding: 3px 6px;
    font-size: 0.6rem;
  }
}

@media (max-width: 600px) {
  .card-google {
    padding: 10px;
  }

  .review-header {
    margin-bottom: 8px;
  }

  .reviewer-avatar {
    width: 28px;
    height: 28px;
  }

  .reviewer-name {
    font-size: 0.8rem;
  }

  .review-stars .star {
    font-size: 0.75rem;
  }

  .card-text {
    font-size: 0.75rem;
  }

  .platform-badge.google-badge {
    padding: 2px 4px;
    font-size: 0.55rem;
  }

  .card-footer {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .card-link {
    padding: 6px 8px;
    font-size: 0.7rem;
  }
}

/* ========================================
   HERO VERSIONS (V1, V2, V3)
   ======================================== */

/* VERSION 2 (Modern Grid Layout) */
.home-hero-v2 {
  width: 100%;
  position: relative;
  padding: calc(var(--section-padding) + 140px) 0 var(--section-padding);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--white);
  margin-top: 0;
  background: var(--light-bg);
}

.home-hero-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-hero-v2__content {
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-v2-content-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-v2-content-inner .hero-subtitle {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 700;
}

.hero-v2-content-inner .hero-main-title {
  color: var(--primary-color);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.hero-stats-row {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--light-gray);
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-hero-v2__form-section {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.home-hero-v2__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.home-hero-v2__form-card {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 35, 75, 0.85);
  backdrop-filter: blur(10px);
  padding: 40px;
}

.home-hero-v2__form-card .wpcf7-form {
  width: 100%;
}

@media (max-width: 1024px) {
  .home-hero-v2__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-hero-v2__form-section {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .home-hero-v2 {
    padding: calc(var(--section-padding) + 100px) 0 var(--section-padding);
    min-height: auto;
  }

  .home-hero-v2__content {
    padding: 30px;
  }

  .hero-v2-content-inner {
    gap: 16px;
  }

  .hero-stats-row {
    gap: 12px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .home-hero-v2__form-section {
    min-height: 350px;
  }
}

/* VERSION 3 (Minimalist Centered) */
.home-hero-v3 {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: calc(var(--section-padding) + 140px) 0 var(--section-padding);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 0;
}

.home-hero-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.home-hero-v3__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.home-hero-v3__content-centered {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-v3-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-description-large {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.hero-v3-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.hero-v3-ctas .btn {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
}

.home-hero-v3__form-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero-v3__form-section .wpcf7-form {
  width: 100%;
}

@media (max-width: 768px) {
  .home-hero-v3 {
    padding: calc(var(--section-padding) + 100px) 0 var(--section-padding);
  }

  .hero-v3-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-v3-ctas {
    flex-direction: column;
    width: 100%;
  }

  .home-hero-v3__form-section {
    margin-top: 40px;
    padding: 24px;
  }
}

/* =============================================
   VERSION 4 (Landing / Petición Familiar)
   Texto + prueba social (izq) / formulario directo (der)
   ============================================= */
.home-hero-v4 {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--light-bg);
  padding: 160px 0 120px;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--text-color, #333);
}

/* Imagen de fondo con blur (aislada en ::before para no difuminar texto ni form).
   scale(1.1) evita los bordes claros que deja el blur. */
.home-hero-v4::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: blur(4px);
  transform: scale(1.1);
}

/* Scrim BLANCO por capas:
   - Capa 1 (to bottom): blanco en la franja superior para que el navbar oscuro se lea.
   - Capa 2 (to right): blanco fuerte a la izquierda para el texto, transparente al centro/derecha. */
.home-hero-v4__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 255, 255, 0) 32%
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 30%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0) 66%
    );
}

.home-hero-v4 .container {
  position: relative;
  z-index: 2;
  max-width: 1366px;
}

.home-hero-v4__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

/* ----- Columna texto ----- */
.home-hero-v4__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1lh;
  min-width: 0;
}

.hero-subtitle--pill {
  border: none;
  background: var(--color-primary, #e11b22);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.home-hero-v4__title {
  font-size: 3.6rem;
  max-width: 620px;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color, #16284e);
  letter-spacing: -0.02em;
}

.home-hero-v4__title .text-highlight {
  color: var(--secondary-color, #cb1517);
}

.home-hero-v4__lead {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 500px;
  margin: 0;
  color: var(--text-color, #333);
}

.home-hero-v4__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5lh;
}

.home-hero-v4__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color, #16284e);
}

.home-hero-v4__bullets svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #1aa260;
}

/* ----- Prueba social Google ----- */
.home-hero-v4__social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 8px 14px;
  border-radius: 12px;
  margin-top: 4px;
}

.google-rating__logo {
  display: inline-flex;
  background: var(--white);
  border-radius: 50%;
  padding: 3px;
  line-height: 0;
}

.google-rating__score {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--heading-color, #16284e);
}

.google-rating__stars {
  display: inline-flex;
  color: #fbbc05;
}

.google-rating__stars svg {
  width: 16px;
  height: 16px;
}

.google-rating__text {
  font-size: 0.85rem;
  color: var(--text-color, #555);
}

/* ----- Columna formulario ----- */
.home-hero-v4__form-card {
  min-width: 0;
}

.home-hero-v4__form-card .wpcf7-form {
  width: 100%;
}

/* ----- Indicador de scroll a servicios ----- */
.home-hero-v4__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--heading-color, #16284e);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-hero-v4__scroll:hover {
  opacity: 1;
}

.home-hero-v4__scroll-arrow {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  color: var(--secondary-color, #cb1517);
  animation: hero-v4-bounce 1.8s ease-in-out infinite;
}

.home-hero-v4__scroll-arrow svg {
  width: 22px;
  height: 22px;
}

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

@media (prefers-reduced-motion: reduce) {
  .home-hero-v4__scroll-arrow {
    animation: none;
  }
}

/* Offset para que el ancla no quede tapada por el header fijo */
#servicios-home {
  scroll-margin-top: 120px;
}

/* ----- Responsive ----- */
@media (max-width: 980px) {
  .home-hero-v4__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-hero-v4__scroll {
    display: none;
  }

  .home-hero-v4__overlay {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.8) 45%,
        rgba(255, 255, 255, 0.55) 100%
    );
  }
}

@media (max-width: 768px) {
  .home-hero-v4 {
    padding: calc(var(--section-padding) + 90px) 0 var(--section-padding);
  }
}
