/* ===== VARIABLES DE MARCA ===== */
:root {
  --sana-blue:        #2A4D6E;           /* Deep Trust Blue */
  --sana-mint:        #B5E3D8;           /* Soft Mint Green */
  --sana-font-primary:   'Comfortaa', cursive;
  --sana-font-secondary: 'Nunito Sans', sans-serif;
}

/* ===== HEADER PROFESIONALES ===== */
.pro-main-header {
  position: relative;
  min-height: 100vh;
  background: url('/images/psico.jpg') center 40% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.pro-main-header .overlay-gradient {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8)  0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0)    100%
  );
  z-index: 1;
}

.pro-main-header .container {
  position: relative;
  z-index: 2;
}

/* ===== TÍTULOS ===== */
.pro-main-header h1,
.pro-main-title {
  font-family: var(--sana-font-primary);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.pro-main-header p,
.pro-main-subtitle {
  font-family: var(--sana-font-secondary);
  font-size: 1.3rem;
  color: #E0F2F1;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ===== ONDA INFERIOR ===== */
.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 2;
}
.wave-bottom svg {
  display: block;
  width: 100%;
  height: 120px;
  margin-bottom: -4px;
}

/* ===== RESPONSIVE ===== */
@media (max-height: 700px) {
  .pro-main-header {
    background-position: center 85%;
  }
}
@media (max-width: 991px) {
  .pro-main-header {
    min-height: auto;
    padding: 6rem 1rem;
  }
  .pro-main-header h1 {
    font-size: 2.2rem;
  }
  .pro-main-header p {
    font-size: 1.1rem;
  }
}

/* ===== COMPORTAMIENTO GENERAL ===== */
/* Oculta cualquier pseudo‐elemento del index si se reutiliza en esta sección */
.index-overlay-gradient {
  display: none !important;
}


/* CTA siguiente */
.pro-cta-connection {
  background: #ffffff;
  color: #2A4D6E;
}

.pro-cta-title {
  font-family: 'Comfortaa', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pro-cta-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.2rem;
  color: #3A4E5A;
}

/* Lottie */
#lottie-map-connection {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .pro-main-title, .pro-cta-title {
    font-size: 2.2rem;
  }

  .pro-main-subtitle, .pro-cta-subtitle {
    font-size: 1.1rem;
  }
  
  /* En móvil, regresa al centro normal */
  .pro-main-header {
    background-position: center center;
  }
}




  /* ===== BENEFICIOS ===== */
  .pro-benefits-section {
    background-color: #ffffff;
  }
  
  .benefit-card {
    border: 1px solid #e3ecec;
    border-radius: 12px;
    transition: transform 0.3s ease;
    background-color: #f9fdfd;
  }
  
  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  }
  
  .benefit-icon {
    font-size: 2.5rem;
    color: #2A4D6E;
  }
  
  /* ===== PROCESO DE REGISTRO ===== */
  .pro-process-section {
    background: #fff;
  }
  
  .process-step {
    border: 1px solid #dce5e5;
    border-radius: 12px;
    background: #ffffff;
    transition: transform 0.3s ease;
  }
  
  .process-step:hover {
    transform: translateY(-5px);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #2A4D6E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Comfortaa', cursive;
  }
  
  /* ===== CTA FINAL ===== */
  .pro-cta-section {
    color: #fff;
    padding: 80px 0;
  }
  
  .pro-cta-section h2 {
    font-family: 'Comfortaa', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .pro-cta-section p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  /* ===== GENERAL ===== */
  .section-title h2 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    color: #2A4D6E;
  }
  
  .subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    color: #6F9DA5;
    margin-top: 0.5rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .pro-hero-title {
      font-size: 2.2rem;
    }
    
    .pro-hero-subtitle {
      font-size: 1.1rem;
    }
    
    .pro-cta-section h2 {
      font-size: 2rem;
    }
  }
  