/* ==========================================================================
   1. IMPORTACIÓN LOCAL Y VARIABLES (ROOT)
   ========================================================================== */
@font-face {
  font-family: 'Acumin Variable Concept';
  src: url('../fonts/AcuminVariableConcept.ttf') format('woff2-supports-variations'),
       url('../fonts/AcuminVariableConcept.ttf') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta de Colores Exácta */
  --color-primary: #C2A324;      /* Dorado / Mostaza */
  --color-secondary: #0F276D;    /* Azul Marino */
  --color-dark: #4A4A4A;         /* Gris Oscuro */
  --color-light: #F2F2F2;        /* Gris Claro */
  --color-bg-warm: #F3F1EE;      /* Blanco Cálido / Arena */

  /* Tipografía Principal */
  --font-main: 'Acumin Variable Concept', sans-serif;

  /* Tamaños de Fuente Desktop (Escritorio) */
  --fs-hero-title-dt: 68px;
  --fs-hero-desc-dt: 18px;
  --fs-features-title-dt: 50px;
  --fs-features-desc-dt: 18px;
  --fs-bullets-dt: 20px;
  --fs-form-title-dt: 37px;
  --fs-form-subtitle-dt: 24px;
  --fs-form-inputs-dt: 18px;

  /* Tamaños de Fuente Mobile (Teléfonos) */
  --fs-hero-title-mb: 36px;
  --fs-hero-desc-mb: 16px;
  --fs-features-title-mb: 30px;
  --fs-features-desc-mb: 16px;
  --fs-bullets-mb: 18px;
  --fs-form-title-mb: 26px;
  --fs-form-subtitle-mb: 20px;
  --fs-form-inputs-mb: 16px;
}

/* Reset de Estilos Básicos */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: #FFFFFF;
  color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
}


.custom-object-left {
  object-position: left center; 
}

/* Contenedor centralizado para limitar el ancho del contenido */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ==========================================================================
   2. CLASES GLOBALES
   ========================================================================== */
.btn-global {
     display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 48px;

    background: var(--color-primary);
    color: #fff;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;

    border-radius: 4px;

    transition: all .3s ease;
}

.btn-global:hover {
   transform: translateY(-2px);
  background-color: #a88d1f;
  color: #fff;
}


/* ==========================================================================
   3. SECCIÓN 1: BANNER HERO (FONDO AZUL)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  background-image: url('../img/home/bg-condominio.webp');
  background-size: cover;
  background-position: center;
  padding: 80px 0 0 0;
  z-index: 5;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 39, 109, 0.9);
  z-index: 1;
}
.hero-section-nosotros{
  position: relative;
  width: 100%;
  background-image: url('../img/nosotros/bg-nosotros.webp');
  background-size: cover;
  background-position: center;
  padding: 80px 0 0 0;
  z-index: 5;
}

.hero-section-nosotros::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 39, 109, 0.9);
  z-index: 1;
}

.hero-container {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.hero-content {
  width: 60%;
  color: #FFFFFF;
  padding-bottom: 120px;
}

.hero-title {
  font-size: var(--fs-hero-title-dt);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #FFFFFF;

}

/* === LÍNEA CURVA ESTILO ARTESANAL === */
.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url('../img/home/line.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hero-description {
  font-size: var(--fs-hero-desc-dt);
  font-weight: 300; /* Medium */
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 35px;
}


/* ==========================================================================
   4. TARJETA DEL FORMULARIO (DORADO) CON TRASLAPE TRAS TRASPASO DE SECCIÓN
   ========================================================================== */
.card-form {
  width: 40%;
  max-width: 450px;
  background-color: var(--color-primary);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  margin-bottom: -440px; 
  z-index: 10;
}

.form-pattern-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background-image: url('../img/home/bg-form.svg');
  background-position: 0 0, 8px 8px;
  pointer-events: none;
  z-index: 1;
}

.quote-form { position: relative; z-index: 2; }

.form-title {
  color: #FFFFFF;
  font-size: var(--fs-form-title-dt);
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.form-group { margin-bottom: 12px; }
.form-row { display: flex; gap: 12px; margin-bottom: 12px; }

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="date"] {
  width: 100%;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 25px;
  padding: 0 20px;
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: var(--fs-form-inputs-dt);
  font-weight: 500;
  outline: none;
}

.quote-form input::placeholder { color: rgba(255, 255, 255, 0.85); }

.quote-form input:focus{
  background-color: rgba(255, 255, 255, 0.35) !important;
}

.form-subtitle {
  color: #FFFFFF;
  font-size: var(--fs-form-subtitle-dt);
  font-weight: 700;
  text-align: center;
  margin: 24px 0 15px 0;
}

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-label {
  display: flex;
  align-items: center;
  position: relative;
  color: #FFFFFF;
  font-size: var(--fs-form-inputs-dt);
  font-weight: 600; /* Semibold */
  cursor: pointer;
  padding-left: 32px;
}

.radio-label input { position: absolute; opacity: 0; }
.custom-radio {
  position: absolute;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #FFFFFF;
  border-radius: 50%;
}

.radio-label input:checked ~ .custom-radio::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.form-date-section input[type="date"] { text-align: center; }


.btn-submit {
  display: block;
  width: 100%;
  height: 50px;
  background-color: var(--color-bg-warm) !important; /* F3F1EE */
  color: var(--color-dark) !important;
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.btn-submit:hover { background-color: #e5e2de !important; }


/* ==========================================================================
   5. SECCIÓN 2: CARACTERÍSTICAS / BULLETS (ANCHO COMPLETO F3F1EE)
   ========================================================================== */
.features-section {
  width: 100%;
  background-color: var(--color-bg-warm); /* F3F1EE total */
  padding: 75px 0 100px 0; /* Margen superior amplio para alojar al form flotante */
  z-index: 1;
}

.features-container {
  display: flex;
  justify-content: flex-start;
}

.features-content {
  width: 55%;
}

.features-title {
  color: var(--color-secondary);
  font-size: var(--fs-features-title-dt);
  font-weight: 500; /* Medium */
  line-height: 1.2;
  margin-bottom: 24px;
}

.features-description {
  color: var(--color-dark);
  font-size: var(--fs-features-desc-dt);
  font-weight: 500; /* Medium */
  line-height: 1.6;
  margin-bottom: 35px;
  letter-spacing: 3%;
}

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

.feature-item {
  display: flex;
  align-items: center;
  color: var(--color-dark);
  font-size: var(--fs-bullets-dt);
  font-weight: 600; /* Semibold */
  letter-spacing: 0.04em; /* 4% */
}

.icon-wrapper {
  margin-right: 15px;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
}


/* ==========================================================================
   6. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    width: 100%;
    text-align: center;
    padding-bottom: 40px;
  }

  .hero-description { margin-left: auto; margin-right: auto; }

  .card-form {
    width: 100%;
    max-width: 550px;
    margin-bottom: 40px; 
    align-self: center;
  }

  .features-section { padding: 60px 0; }
  .features-content { width: 100%; text-align: center; }
  .features-description { margin-left: auto; margin-right: auto; }
  .feature-item { justify-content: center; }
}

@media (max-width: 576px) {
  .hero-section { padding: 50px 0 0 0; }

  .hero-title { font-size: var(--fs-hero-title-mb); }
  .hero-description { font-size: var(--fs-hero-desc-mb); }

  .features-title { font-size: var(--fs-features-title-mb); }
  .features-description { font-size: var(--fs-features-desc-mb); }
  .feature-item { font-size: var(--fs-bullets-mb); justify-content: flex-start; }

  .card-form { padding: 30px 20px; }
  .form-title { font-size: var(--fs-form-title-mb); }
  .form-subtitle { font-size: var(--fs-form-subtitle-mb); }

  .quote-form input[type="text"],
  .quote-form input[type="email"],
  .quote-form input[type="tel"],
  .quote-form input[type="date"],
  .radio-label {
    font-size: var(--fs-form-inputs-mb);
  }

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

/* ==========================================================
   SECCIÓN
========================================================== */

.admin-pillars-section {
    padding: 90px 0;
    background: #f5f5f5;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    color: var(--color-secondary);
    font-size: var(--fs-features-title-dt);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--color-dark);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 3%;
    line-height: 1.7;
}

.section-heading p + p {
    margin-top: 10px;
}

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

/* ==========================================================
   GRID
========================================================== */

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

/* ==========================================================
   CARD
========================================================== */

.pillar-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,.12);
}

/* ==========================================================
   IMAGEN
========================================================== */

.pillar-image {
    height: 250px;
}

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

/* ==========================================================
   CONTENIDO
========================================================== */

.pillar-content {
    position: relative;
    z-index: 2;

    margin-top: -72px;

    padding: 82px 28px 34px;

    text-align: center;

        display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Semicírculo superior */

.pillar-content::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 0;

    transform: translateX(-50%);

    width: 120%;
    height: 210px;

    background: #fff;

    border-radius: 50% 50% 0 0;

    z-index: -1;
}

/* Fondo inferior */

.pillar-content::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 105px;
    bottom: 0;

    background: #fff;

    z-index: -2;
}

/* ==========================================================
   ICONO
========================================================== */

.pillar-icon {
    position: absolute;

    top: -36px;
    left: 50%;

    transform: translateX(-50%);

    width: 76px;
    height: 76px;

    background: var(--color-primary);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;
}

.pillar-icon::before {
    content: "";

    position: absolute;

    width: 60px;
    height: 60px;

    background: #fff;

    border-radius: 50%;
}

.pillar-icon img {
    position: relative;
    z-index: 2;

    width: 34px;
    height: 34px;

    object-fit: contain;
}

/* ==========================================================
   TEXTOS
========================================================== */

.pillar-content h3 {
    color: var(--color-secondary);

    font-size: 30px;
    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 16px;
}

.pillar-content p {
    color: #555;

    font-size: 17px;
    line-height: 1.7;

    margin-bottom: 12px;
}

/* ==========================================================
   LISTA
========================================================== */

.pillar-content ul {
    list-style: none;
    margin-bottom: 18px;
    padding: 0;
}

.pillar-content li {
    position: relative;

    padding-left: 16px;

    margin-bottom: 7px;

    color: #555;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 3%;
    text-align: left;
}

.pillar-content li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--color-primary);
}

/* ==========================================================
   RESULTADO
========================================================== */

.pillar-content strong {
    display: block;

    color: var(--color-secondary);

    font-size: 15px;
    font-weight: 700;

    line-height: 1.5;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-heading h2 {
        font-size: var(--fs-features-title-mb);
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 576px) {

    .admin-pillars-section {
        padding: 60px 0;
    }

    .pillar-image {
        height: 180px;
    }

    .pillar-content {
        padding: 80px 22px 30px;
    }

    .pillar-content h3 {
        font-size: 22px;
    }

    .pillar-content::before {
        width: 130%;
        height: 190px;
    }
}

/* ==========================================================
   SECCIÓN MANTENIMIENTO
========================================================== */

.maintenance-section {
  padding: 90px 0;
  background: var(--color-bg-warm);
}

.maintenance-container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.maintenance-media {
  position: relative;
  min-height: 390px;
}

.maintenance-img {
  position: absolute;
  display: block;
  object-fit: cover;
}

.maintenance-img-back {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 285px;
}

.maintenance-img-front {
  top: 0;
  right: 0;
  width: 74%;
  height: 310px;
}

.maintenance-dots {
  position: absolute;
  top: 35px;
  left: 45px;
  width: 82px;
  height: 82px;
  background-image: radial-gradient(var(--color-secondary) 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: 2;
}

.maintenance-content {
  color: var(--color-secondary);
}

.maintenance-line {
  display: block;
  width: 95px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--color-secondary);
}

.maintenance-content h2 {
  color: var(--color-secondary);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 26px;
}

.maintenance-content ul {
  list-style: none;
  margin-bottom: 26px;
  padding: 0;
}

.maintenance-content li {
  position: relative;
  margin-bottom: 10px;
  color: var(--color-dark);
  font-size: 15px;
  line-height: 1.45;
}


.maintenance-content li strong {
  color: var(--color-secondary);
  font-weight: 800;
}

.maintenance-content p {
  max-width: 520px;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 4%;
}

/* Responsive */
@media (max-width: 991px) {
  .maintenance-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .maintenance-media {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .maintenance-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .maintenance-section {
    padding: 60px 0;
  }

  .maintenance-media {
    min-height: 310px;
  }

  .maintenance-img-back {
    width: 62%;
    height: 220px;
  }

  .maintenance-img-front {
    width: 78%;
    height: 230px;
  }

  .maintenance-dots {
    top: 20px;
    left: 20px;
  }

  .maintenance-content h2 {
    font-size: 28px;
  }
}

/* ==========================================================
   BENEFICIOS
========================================================== */

.benefits-section {
    position: relative;
    padding: 90px 0;
    background: var(--color-secondary);
    overflow: hidden;
}

/* Patrón de puntos */

.benefits-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:radial-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px);
    background-size: 18px 18px;

    pointer-events: none;
}

/* ==========================================================
   TITULO
========================================================== */

.benefits-title {
    position: relative;
    z-index: 2;

    color: #fff;

    text-align: center;

    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;

    margin-bottom: 60px;
}

/* ==========================================================
   GRID
========================================================== */

.benefits-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefits-grid-nosotros {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ==========================================================
   ITEM
========================================================== */

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

.benefit-icon {
    width: 110px;
    height: 110px;

    margin: 0 auto 20px;

    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.benefit-item p {
    color: #fff;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.benefit-title{
    color: #fff;

    font-size: 26px !important;
    font-weight:700 !important;
    line-height: 1.5;
    margin-bottom: 5px;
}
.benefit-description{
    color: #fff;

    font-size: 16px !important;
    line-height: 1.6;
    max-width: 300px !important;
    margin: 10px auto 0 !important;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

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

    .benefits-title {
        font-size: 38px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 576px) {

    .benefits-section {
        padding: 70px 0;
    }

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

    .benefits-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .benefit-icon {
        width: 95px;
        height: 95px;
    }

    .benefit-icon img {
        width: 50px;
        height: 50px;
    }

    .benefit-item p {
        font-size: 16px;
    }
}

/* ==========================================================
   LEGAL
========================================================== */

.legal-section {
    padding: 90px 0;
    background: var(--color-bg-warm);
}

.legal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ==========================================================
   TEXTO
========================================================== */

.legal-content {
    max-width: 500px;
}

.legal-line {
    display: block;
    width: 90px;
    height: 4px;
    background: var(--color-secondary);
    margin-bottom: 18px;
}

.legal-content h2 {
    color: var(--color-secondary);
    font-size: var(--fs-features-title-dt);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}

.legal-intro {
    color: var(--color-dark);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.legal-content li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;

    color: var(--color-dark);
    font-size: 15px;
    line-height: 1.5;
}

.legal-content li::before {
    content: "✦";

    position: absolute;
    left: 0;
    top: 0;

    color: var(--color-secondary);
    font-size: 13px;
    font-weight: 700;
}

.legal-result {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 4%;
}

/* ==========================================================
   IMÁGENES
========================================================== */

.legal-media {
    position: relative;
    min-height: 430px;
}

.legal-img {
    position: absolute;
    object-fit: cover;
    display: block;
}

.legal-img-main {
    top: 0;
    left: 0;

    width: 72%;
    height: 290px;
}

.legal-img-secondary {
    right: 0;
    bottom: 0;

    width: 48%;
    height: 230px;
}

/* ==========================================================
   PUNTOS
========================================================== */

.legal-dots {
    position: absolute;
    top: 25px;
    right: 35px;

    width: 90px;
    height: 90px;

    background-image:
        radial-gradient(
            var(--color-secondary) 2px,
            transparent 2px
        );

    background-size: 12px 12px;

    z-index: 3;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {

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

    .legal-content {
        order: 2;
        max-width: 100%;
    }

    .legal-media {
        order: 1;
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .legal-content h2 {
        font-size: var(--fs-features-title-mb);
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 576px) {

    .legal-section {
        padding: 60px 0;
    }

    .legal-media {
        min-height: 320px;
    }

    .legal-img-main {
        height: 220px;
    }

    .legal-img-secondary {
        height: 170px;
    }
}

/* ==========================================================
   PROCESO
========================================================== */

.process-section {
    position: relative;
    padding: 100px 0;
    background: var(--color-bg-warm);
    overflow: hidden;
}

/* ==========================================================
   DOTS
========================================================== */

.process-dots {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.process-dots-top {
    top: 0;
    right: 0;
    width: 240px;
}

.process-dots-bottom {
    left: -20px;
    bottom: 0;
    width: 260px;
}

/* ==========================================================
   HEADER
========================================================== */

.process-header {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 70px;
}

.process-header h2 {
    color: var(--color-secondary);
    font-size: var(--fs-features-title-dt);
    font-weight: 700;
    line-height: 1.1;
}

.process-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 48px;

    background: var(--color-primary);
    color: #fff;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;

    border-radius: 4px;

    transition: all .3s ease;
}

.process-btn:hover {
    transform: translateY(-2px);
    background: #a88d1f;
    color: #fff;
}

/* ==========================================================
   GRID
========================================================== */

.process-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 34px 48px;
}

/* ==========================================================
   CARD
========================================================== */

.process-card {
    position: relative;

    min-height: 180px;

    background: #fff;

    border-radius: 18px;

    box-shadow: 0 3px 10px rgba(0,0,0,.10);

    padding: 30px 30px 30px 165px;
}

/* ==========================================================
   IMAGEN
========================================================== */

.process-card__image {
    position: absolute;

    left: -30px;
    top: 50%;

    transform: translateY(-50%);

    width: 175px;
    height: 105px;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

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

/* ==========================================================
   NUMERO
========================================================== */

.process-number {
    position: absolute;

    top: 12px;
    left: 12px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-secondary);

    color: #fff;

    font-size: 22px;
    font-weight: 700;

    border-radius: 4px;

    z-index: 2;
}

/* ==========================================================
   CONTENIDO
========================================================== */

.process-card__content {
    display: flex;
    align-items: center;
    min-height: 85px;
}

.process-card__content h3 {
    color: var(--color-secondary);

    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 991px) {

    .process-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-header h2 {
        font-size: var(--fs-features-title-mb);
    }
}

@media (max-width: 576px) {

    .process-section {
        padding: 70px 0;
    }

    .process-card {
        padding: 120px 20px 25px;
        text-align: center;
    }

    .process-card__image {
        left: 50%;
        top: -15px;

        transform: translateX(-50%);

        width: 200px;
        height: 120px;
    }

    .process-card__content {
        justify-content: center;
        min-height: auto;
    }

    .process-card__content h3 {
        font-size: 20px;
    }

    .process-dots-top,
    .process-dots-bottom {
        width: 180px;
    }
}

.response-section {
  position: relative;
  padding: 95px 0 90px;
  background-image:
    linear-gradient(rgba(15, 39, 109, .88), rgba(15, 39, 109, .88)),
    url("../img/home/bg-prefooter.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.response-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.response-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.response-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.response-content h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
}

.response-subtitle {
  margin-bottom: 26px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.response-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-bottom: 36px;
  list-style: none;
}

.response-list li {
  position: relative;
  padding-left: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.response-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-primary);
}

.response-result {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .response-section {
    padding: 70px 0;
  }

  .response-content h2 {
    font-size: 32px;
  }

  .response-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

.site-footer {
  padding: 70px 0 60px;
  background: #303030;
  text-align: center;
}

.footer-content {
  max-width: 760px;
  margin: 0 auto;
}

.footer-logo {
  width: 300px;
  max-width: 100%;
  margin-bottom: 30px;
}

.footer-content h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-bottom: 42px;
}

.footer-contact a {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration:none;
}

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

.footer-contact a img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 8px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 5px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .3px;
}

.footer-btn:hover {
   transform: translateY(-2px);
  background: #a88d1f;
  color: #fff;
}

@media (max-width: 576px) {
  .footer-content h2 {
    font-size: 30px;
  }

  .footer-btn {
    width: 100%;
    padding: 14px 20px;
  }
}

.site-header {
  background: var(--color-bg-warm);
  padding: 16px 0 0 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content:end;
  gap: 32px;
}

.header-logo img {
  width: 210px;
  max-width: 100%;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-secondary);
  text-decoration: none;
}

.header-contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-contact__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header-contact small {
  display: block;
  margin-bottom: 4px;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 500;
}

.header-contact strong {
  display: block;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
}
.header-btn:hover {
  transform: translateY(-2px);
  background: #a88d1f;
  color: #fff;
}

@media (max-width: 991px) {
  .site-header {
    padding: 18px 0;
    display: none;
  }

  .header-container {
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .header-container {
    gap: 16px;
  }

  .header-logo img {
    width: 185px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-contact {
    justify-content: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
  }

  .header-contact__icon {
    width: 38px;
    height: 38px;
  }

  .header-contact__icon img {
    width: 20px;
    height: 20px;
  }

  .header-contact small {
    font-size: 12px;
  }

  .header-contact strong {
    font-size: 14px;
    line-height: 1.15;
  }

  .header-btn {
    grid-column: 1 / -1;
    width: 100%;
    height: 46px;
  }
}

@media (max-width: 390px) {
  .header-actions {
    grid-template-columns: 1fr;
  }

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

.error-message {
    display: block;
    margin-top: 4px;
    color: #dc2626;
    font-size: 13px;
}

input.error {
    border: 1px solid #dc2626 !important;
}

input.valid {
    border: 1px solid #16a34a !important;
}

/* ==========================================================
   LEADERSHIP
========================================================== */

.leadership-section {
    padding: 100px 0;
    background: var(--color-bg-warm);
}

.leadership-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.leadership-header span {
    display: block;
    width: 80px;
    height: 4px;
    margin: 0 auto 24px;
    background: var(--color-primary);
}

.leadership-header h2 {
    color: var(--color-secondary);
    font-size: var(--fs-features-title-dt);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.leadership-header p {
    color: #666;
    font-size: 22px;
    line-height: 1.5;
}

/* ==========================================================
   CARD
========================================================== */

.leader-card {
    max-width: 1000px;
    margin: 0 auto;

    background: #fff;

    border-radius: 28px;

    padding: 60px;

    box-shadow:
        0 8px 30px rgba(15,39,109,.06);
}

.leader-position {
    display: inline-block;

    color: var(--color-primary);

    font-size: 14px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 16px;
}

.leader-card h3 {
    color: var(--color-secondary);

    font-size: 42px;
    font-weight: 700;

    margin-bottom: 24px;
}

.leader-card p {
    max-width: 850px;

    color: var(--color-dark);

    font-size: 19px;
    line-height: 1.8;

    margin-bottom: 32px;
}

.leader-linkedin {
    display: inline-flex;
    align-items: center;

    color: var(--color-secondary);

    text-decoration: none;

    font-weight: 700;

    border-bottom: 2px solid var(--color-primary);

    padding-bottom: 4px;
}

.leader-linkedin:hover {
    color: var(--color-primary);
}

/* ==========================================================
   EXPERIENCIA
========================================================== */

.leader-experience {
    margin-top: 50px;
    padding-top: 40px;

    border-top: 1px solid #e8e8e8;
}

.leader-experience h4 {
    color: var(--color-secondary);

    font-size: 16px;
    font-weight: 700;

    margin-bottom: 24px;
}

.leader-logos {
    display: flex;
    align-items: center;

    gap: 40px;
    flex-wrap: wrap;
}

.leader-logos img {
    max-width: 140px;
    max-height: 70px;

    width: auto;
    height: auto;

    opacity: .8;

    transition: .3s;
}

.leader-logos img:hover {
    opacity: 1;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .leadership-header h2 {
        font-size: var(--fs-features-title-mb);
    }

    .leadership-header p {
        font-size: 18px;
    }

    .leader-card {
        padding: 35px 25px;
    }

    .leader-card h3 {
        font-size: 30px;
    }

    .leader-card p {
        font-size: 16px;
    }

    .leader-logos {
        justify-content: center;
    }

    .leader-logos img {
        max-width: 100px;
    }
}

/* ==========================================================
   FAQ
========================================================== */

.faq-section {
  padding: 100px 0;
  background: var(--color-bg-warm);
}

.faq-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.faq-header span {
  display: block;
  width: 80px;
  height: 4px;
  margin: 0 auto 22px;
  background: var(--color-primary);
}

.faq-header h2 {
  color: var(--color-secondary);
  font-size: var(--fs-features-title-dt);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}

.faq-header p {
  color: var(--color-dark);
  font-size: 20px;
  line-height: 1.5;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(15, 39, 109, .08);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 24px 64px 24px 28px;
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 28px 26px;
  color: var(--color-dark);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-header h2 {
    font-size: var(--fs-features-title-mb);
  }

  .faq-header p {
    font-size: 16px;
  }

  .faq-item summary {
    padding: 20px 56px 20px 22px;
    font-size: 17px;
  }

  .faq-item p {
    padding: 0 22px 22px;
    font-size: 15px;
  }
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.92);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    z-index: 2147483647;

    transition: all .3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.whatsapp-float img {
    width: 46px;
    height: 46px;
    display: block;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 64px;
        height: 64px;
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }
}