/* ============================= */
/* CONFIGURACIÓN GENERAL */
/* ============================= */
* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  background-color: #ffffff;
  color: #000;
}

/* ============================= */
/* HERO / DONACIÓN */
/* ============================= */
.hero-section {
  padding: 0;
  
}

.inicioCAC {
  min-height: 60vh;
  background-image: url("../Img/Psicologo/IN2.png");
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
}
.hero-box p {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-box p span {
  font-size: 35px;
  color: rgb(159, 7, 186);
}

/* ============================= */
/* PSICOLOGÍA */
/* ============================= */
.psychology-section {
  padding: 70px 20px;
  background-color: #f5f5f5;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: rgb(159, 7, 186);
  font-weight: bold;
  text-decoration: underline;
}

.main-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* IZQUIERDA */
.left-section {
  flex: 1;
  text-align: center;
}

.psychologist-image {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.psychologist-name {
  font-size: 20px;
  font-weight: 600;
}

.infoPsicologo {
  background: #fff;
  padding: 25px;
  border-left: 6px solid rgb(159, 7, 186);
  border-radius: 12px;
  font-style: italic;
}

/* DERECHA */
.right-section {
  flex: 1.5;
}

.services-link {
  display: block;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: rgb(159, 7, 186);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-item {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 6px solid rgb(159, 7, 186);
}

.service-item h3 {
  color: rgb(159, 7, 186);
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 20px;
}

.service-item p {
  margin-bottom: 20px;
}

/* BOTÓN WHATSAPP */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #07963b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #06f75a;
}
/* -------------------------------------------------precio---------------------------------  */
.price-badge {
  background-color: rgb(159, 7, 186);
  color: white;
  font-family: sans-serif;
  font-size: 0.8rem;
  padding: 10px;
  width: 150px;
  height: 150px;
  text-align: center;
  border-radius: 50px;
  margin: 30px auto 0;
  padding-left: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.price-badge .label {
  font-weight: bold;
  line-height: 1.2;
}

.price-badge .price {
  font-size: 1.5rem;
  margin: 10px 0;
}

.price-badge .additional-text {
  font-size: 0.75rem;
}

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

/* Tablets */
@media (max-width: 992px) {
  .hero-box p {
    font-size: 26px;
  }

  .hero-box p span {
    font-size: 30px;
  }

  .section-title {
    font-size: 36px;
  }

  .services-link {
    font-size: 28px;
  }

  .main-content {
    gap: 30px;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .inicioCAC {
    min-height: 60vh;
    padding: 40px 15px;
  }

  .hero-box p {
    font-size: 22px;
  }

  .hero-box p span {
    font-size: 26px;
  }

  .hero-box a {
    padding: 14px 22px;
    font-size: 15px;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 35px;
  }

  .main-content {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .psychologist-image {
    max-width: 280px;
  }

  .services-link {
    font-size: 26px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item h3 {
    font-size: 18px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .hero-box p {
    font-size: 20px;
  }

  .hero-box p span {
    font-size: 22px;
  }

  .section-title {
    font-size: 26px;
  }

  .services-link {
    font-size: 22px;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 14px;
  }

  .cta-button i {
    font-size: 16px;
  }
}
