* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #fff;
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro semi-transparente por defecto */
  z-index: 1030; /* Asegurar que esté por encima de otros elementos */
}

.navbar-scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #5BA5B0 !important;
}

.navbar-collapse {
  background-color: rgba(0, 0, 0, 0.9); /* Fondo para el menú expandido */
  padding: 10px 0;
  border-radius: 0 0 10px 10px;
}

@media (max-width: 992px) {
  .navbar-collapse {
    margin-top: 0.5rem;
    padding: 0.5rem;
  }
  
  .navbar-nav .nav-item {
    padding: 0.25rem 0;
  }
  
  .nav-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.95rem;
  }
  
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1958&q=80'); /* Consultorio luminoso y moderno */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efecto parallax */
  position: relative;
  color: #fff;
  overflow: hidden; /* Para contener la imagen alternativa */
  padding-top: 76px; /* Espacio para el menú fijo */
}

/* Solución alternativa para la imagen de fondo */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)); /* Gradiente para mejor efecto */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  animation: fadeIn 1.5s ease-in-out;
  margin: 0 auto;
  width: 100%;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn-primary {
  background-color: #2E7D89;
  border-color: #2E7D89;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1F5A63;
  border-color: #1F5A63;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Beneficios Section */
.benefit-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon-wrapper i {
  font-size: 2rem;
  color: #2E7D89;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.benefit-card p {
  color: #666;
}

/* Testimonios Section */
.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.rating {
  color: #FFD700;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.testimonial-author p {
  color: #777;
  font-size: 0.9rem;
}

/* Coaches Section */
.coach-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.coach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Imagen del coach en la tarjeta */
.coach-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 4/3;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.5s ease;
  display: block;
  background: #f8f8f8;
}

@media (max-width: 992px) {
  .coach-img-container {
    max-width: 100%;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 768px) {
  .coach-img-container {
    aspect-ratio: 1/1;
    max-width: 100%;
  }
  .coach-img {
    object-position: right center;
  }
}

/* Overlay LinkedIn */
.coach-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.coach-img-container:hover .coach-overlay {
  opacity: 1;
}

.coach-link {
  background: #fff;
  color: #0077b5;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  text-decoration: none;
}

.coach-link:hover {
  background: #0077b5;
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .coach-img-container {
    height: 200px;
  }
  .coach-link {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

/* Estilos para la foto carnet del coach */
.coach-portrait-container {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  aspect-ratio: 1/1;
}

.coach-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

.coach-portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 0;
  text-align: center;
  font-size: 0.8rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.coach-portrait-container:hover .coach-portrait-overlay {
  transform: translateY(0);
}

.coach-portrait-container:hover .coach-portrait-img {
  transform: scale(1.05);
}

/* Ajustes para la tarjeta del coach */
.coach-info {
  padding: 1.5rem;
}

#coach-name-card {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.coach-specialty, .coach-type {
  color: #666;
  margin-bottom: 0.5rem;
}

.coach-price {
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #777;
}

/* Contacto Section */
.contact-info, .contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.coach-personal-card {
  margin-top: 1.5rem;
}

.coach-personal-card h3 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}

.contact-details {
  margin-top: 1rem;
}

.contact-details p {
  margin-bottom: 1rem;
  color: #666;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coach-personal-card i {
  color: #2E7D89;
  width: 20px;
  text-align: center;
  font-size: 1.2rem;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  border-radius: 15px;
}

/* Responsive para la sección de contacto */
@media (max-width: 992px) {
  .contact-details p {
    font-size: 1rem;
  }
  
  .coach-personal-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-info {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

.whatsapp-btn {
  width: 100%;
  margin-top: 1rem;
  background-color: #25D366;
  border-color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  border-color: #128C7E;
}

.form-control {
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: #2E7D89;
}

/* Footer Styles */
.vd-footer {
  background-color: #1e2432;
  color: white;
  padding: 15px 20px;
  font-family: Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.vd-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vd-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.vd-copyright {
  margin: 0;
  font-size: 14px;
}

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

.vd-social-icon {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.vd-social-icon:hover {
  color: #00ff80;
}

.vd-brand {
  display: flex;
  align-items: center;
}

.vd-pulse {
  position: relative;
  height: 15px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
}

.vd-pulse-circle {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 128, 0.8) 0%, rgba(0, 255, 128, 0.1) 70%, transparent 100%);
  filter: blur(3px);
  box-shadow: 0 0 20px 10px rgba(0, 255, 128, 0.2);
  animation: vdpulse 4s infinite;
  bottom: -3px;
}

.vd-brand-text {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0;
  font-family: Arial, sans-serif;
}

.vd-brand-text-white {
  color: #fff;
  margin-right: 2px;
}

.vd-brand-text-green {
  color: #00ff80;
}

@keyframes vdpulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

/* Estilos para la sección de suscripción */
.header-section {
  background: linear-gradient(135deg, #2E7D89 0%, #1F5A63 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23header-grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.w-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sign-up-form {
  max-width: 500px;
  margin: 0 auto;
}

.w-form {
  position: relative;
}

.w-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.field {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.field:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.field::placeholder {
  color: #666;
}

.button {
  width: 100%;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.button:active {
  transform: translateY(-1px);
}

.success-message, .error-message {
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 1.5rem;
  text-align: center;
  display: none;
}

.success-message {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #d4edda;
}

.error-message {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #f8d7da;
}

.referal-text {
  margin: 1rem 0 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.share-button {
  display: inline-block;
  margin: 0 10px;
  vertical-align: top;
}

.share-button iframe {
  border-radius: 8px;
  overflow: hidden;
}

.share-button.google {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Responsive para la sección de suscripción */
@media (max-width: 768px) {
  .header-section {
    padding: 3rem 0;
  }
  
  .header-section h1 {
    font-size: 2.2rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .field, .button {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .share-button {
    margin: 5px;
  }
  
  .w-container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .header-section h1 {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .field, .button {
    padding: 10px 15px;
  }
}


/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    height: 500px;
    padding-top: 70px;
    background-position: 80% 20%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #1a232a;
  }
  .hero-content {
    margin-top: 100px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  
  .vd-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .vd-social-icons {
    justify-content: center;
  }
  
  .vd-brand {
    justify-content: center;
  }

  .coach-portrait-container {
    max-width: 150px;
    margin-bottom: 1.5rem;
  }
  
  .coach-info .row {
    text-align: center;
  }
} 

/* Botón de WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.whatsapp-float i {
  margin-top: 2px;
}

/* Animación de pulso para el botón de WhatsApp */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
} 

.psychology-section {
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FF 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(46, 125, 137, 0.15);
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.section-title {
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
}

.psychology-section .lead {
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.coaching-card {
  border: none;
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.coaching-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(44, 62, 80, 0.12);
}

.psychology-card .card-title {
  color: #2E7D89;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.coaching-card ul {
  color: #444;
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.wave {
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="60" viewBox="0 0 1440 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 30C120 60 360 0 720 30C1080 60 1320 0 1440 30V60H0V30Z" fill="%23b2dfdb"/></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 40px;
  opacity: 0.5;
  border-radius: 0 0 32px 32px;
} 

.psychology-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15; /* Más sutil */
  z-index: 1;
  pointer-events: none;
  filter: blur(3px); /* Sutil desenfoque */
} 

.psychology-intro {
  margin-bottom: 3rem;
}

.psychology-intro .lead {
  font-size: 1.25rem;
  color: #444;
  line-height: 1.6;
}

.psychology-main-image {
  margin-bottom: 3rem;
}

.psychology-main-image img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.psychology-main-image img:hover {
  transform: scale(1.02);
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon i {
  color: #2E7D89;
  opacity: 0.9;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.service-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
} 

/* Estilos para la sección de psicóloga */
.psicologa-section {
  background: linear-gradient(135deg, #256771 0%, #1a4a52 50%, #0f2d33 100%);
  position: relative;
  overflow: hidden;
}

.psicologa-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="psicologa-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23psicologa-grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.psicologa-section .container {
  position: relative;
  z-index: 2;
}

.psicologa-section .section-title {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.psicologa-section .section-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 80px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), white, rgba(255,255,255,0));
  border-radius: 2px;
}

.psicologa-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.psicologa-section .coach-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.psicologa-section #coach-name-card { 
  color: #256771; 
  font-weight: 700;
  font-size: 1.8rem;
}

.psicologa-section .coach-specialty, 
.psicologa-section .coach-type { 
  color: #555; 
  font-weight: 500;
}

.psicologa-section .coach-price { 
  color: #666; 
  background: rgba(37, 103, 113, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.psicologa-section .coach-price p {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.psicologa-section .coach-price p:last-child {
  margin-bottom: 0;
}

.psicologa-section .btn-success {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.psicologa-section .btn-success:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive para la sección de psicóloga */
@media (max-width: 768px) {
  .psicologa-section .section-title {
    font-size: 2rem;
  }
  
  .psicologa-section .section-subtitle {
    font-size: 1.1rem;
  }
  
  .psicologa-section #coach-name-card {
    font-size: 1.5rem;
  }
  
  .psicologa-section .coach-card {
    margin: 0 1rem;
  }
}

/* Estilos específicos para consultorio de psicología */
.psychology-section {
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FF 100%);
  border: 1px solid rgba(46, 125, 137, 0.1);
}

/* Mejorar la apariencia profesional de las tarjetas */
.benefit-card, .testimonial-card, .coach-card {
  border: 1px solid rgba(46, 125, 137, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

/* Overlay mejorado para el hero */
.overlay {
  background: linear-gradient(to bottom, rgba(46, 125, 137, 0.4), rgba(31, 90, 99, 0.7));
}

/* Estilos para texto profesional */
.professional-text {
  color: #2E7D89;
  font-weight: 600;
}

/* Hover effects mejorados */
.benefit-card:hover, .testimonial-card:hover {
  border-color: rgba(46, 125, 137, 0.3);
  box-shadow: 0 15px 35px rgba(46, 125, 137, 0.15);
}

/* Estilos para la sección de proceso terapéutico */
.process-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%232E7D89" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%232E7D89" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%232E7D89" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%232E7D89" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%232E7D89" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

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

.process-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E7D89, #1F5A63);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(46, 125, 137, 0.3);
}

.process-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2E7D89;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.process-step {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(46, 125, 137, 0.1);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2E7D89, #1F5A63);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(46, 125, 137, 0.15);
  border-color: rgba(46, 125, 137, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2E7D89, #1F5A63);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(46, 125, 137, 0.3);
  transition: all 0.3s ease;
}

.step-number span {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(46, 125, 137, 0.4);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Contenedor de imagen del proceso */
.process-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.process-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.process-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.process-image-container:hover .process-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 125, 137, 0.8), rgba(31, 90, 99, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.process-image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.process-image-container:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay-content h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Responsive para la sección de proceso */
@media (max-width: 992px) {
  .process-title {
    font-size: 2rem;
  }
  
  .process-subtitle {
    font-size: 1.1rem;
  }
  
  .process-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .process-title {
    font-size: 1.8rem;
  }
  
  .process-subtitle {
    font-size: 1rem;
  }
  
  .process-step {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
  }
  
  .step-number span {
    font-size: 1.2rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .process-image {
    height: 300px;
  }
  
  .overlay-content i {
    font-size: 2rem;
  }
  
  .overlay-content h5 {
    font-size: 1.2rem;
  }
  
  .overlay-content p {
    font-size: 0.9rem;
  }
}
