
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif;}
body{background:#1e1d1c;color:#222;}

/* HEADER */
.header{
  background:#9da39b;
  padding:50px 35px;
}
.container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo h1{font-size:32px;font-weight:700;}
.logo span{font-size:20px;}

/* DESKTOP NAV */
.desktop-nav ul{
  list-style:none;
  display:flex;
  gap:40px;
}
.desktop-nav a{
  text-decoration:none;
  color:#ab9b9b;
  font-weight:600;
  letter-spacing:3px;
  font-size:20px;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:#fff;
}

/* HERO */
.hero{
  position:relative;
  height:100vh;
  background:url('img/hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.hero-content{position:relative;z-index:2;}
.hero h2{font-size:48px;margin-bottom:20px;}
.hero p{margin-bottom:30px;}
.btn{
  background:#9da39b;
  color:#fff;
  padding:14px 35px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:2px;
}

/* OVERLAY MENU MOBILE */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(94, 86, 86, 0.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:1000;
}
.menu-overlay.active{display:flex;}

.menu-panel{
  background:#9da39b;
  width:85%;
  max-width:400px;
  padding:70px 30px;
  text-align:center;
  position:relative;
}
.menu-panel ul{list-style:none;}
.menu-panel li{margin:30px 0;}
.menu-panel a{
  text-decoration:none;
  color:#fff;
  font-size:22px;
  letter-spacing:4px;
}
.close-btn{
  position:absolute;
  top:20px;
  right:20px;
  font-size:28px;
  cursor:pointer;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){

  .desktop-nav{display:none;}
  .hamburger{display:block;}

  .hero h2{font-size:30px;}
}
.desktop-nav a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  letter-spacing: 3px;
  padding-bottom: 8px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}
.social-section {
  background-color: #a2aca9;     /* gris verdoso similar al de la imagen */
  padding: 40px 20px;
}

.social-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.4em;         /* separación entre letras */
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.social-title {
  font-size: 14px;
  margin: 0 0 30px;
}

/* Contenedor de enlaces */
.social-links {
  display: flex;
  justify-content: center;
  gap: 60px;                     /* separación horizontal entre enlaces */
  flex-wrap: wrap;
}

/* Estilo de cada enlace */
.social-links a {
  position: relative;
  font-size: 13px;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  padding-bottom: 8px;
}

/* Línea debajo de cada enlace */
.social-links a .underline {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 1px;
  background-color: #ffffff;
  transform: translateX(-50%);
  opacity: 0.7;
}

/* Efecto hover opcional */
.social-links a:hover .underline {
  opacity: 1;
}

/* Responsivo en pantallas pequeñas */
@media (max-width: 600px) {
  .social-inner {
    letter-spacing: 0.25em;
  }

  .social-links {
    gap: 30px;
  }
}
/* Franja de contenido Guadix (sin redes) */
.franja-guadix {
  background-color: #a2aca9;     /* color de la segunda foto */
  padding: 50px 20px;
}

.franja-guadix__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Título principal */
.franja-guadix__title {
  font-size: 22px;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}

/* Texto SEO Guadix */
.franja-guadix__texto {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive tablet y móvil */
@media (max-width: 768px) {
  .franja-guadix {
    padding: 40px 18px;
  }

  .franja-guadix__title {
    font-size: 18px;
    letter-spacing: 0.1em;
  }

  .franja-guadix__texto {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .franja-guadix {
    padding: 35px 16px;
  }

  .franja-guadix__title {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .franja-guadix__texto {
    font-size: 13px;
  }
}
/* ===== SECCIÓN SERVICIOS ===== */

.servicios {
  background: #f5f5f3;
  padding: 100px 20px;
}

.servicios-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 60px;
  text-align: center;
}

.servicio img {
  width: 70px;
  margin-bottom: 25px;
  opacity: 0.8;
}

.servicio h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #222;
}

/* ===== BOTÓN COLOR DE TU WEB ===== */

.btn-servicio {
  display: inline-block;
  padding: 14px 40px;
  background: #9da39b;      /* COLOR DE TU WEB */
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Hover elegante */

.btn-servicio:hover {
  background: #8e948c;
  transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
  .servicios {
    padding: 70px 20px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .servicio h3 {
    font-size: 20px;
  }
}
/* ===== CTA FINAL ===== */

.cta {
  position: relative;
  background: url("img/cta-bg.jpg") center/cover no-repeat;
  padding: 140px 20px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Oscurece imagen */
}

.cta-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 25px;
}

.cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 45px;
}

/* ===== BOTÓN COLOR DE TU WEB ===== */

.btn-cta {
  display: inline-block;
  padding: 16px 50px;
  background: #9da39b;   /* COLOR DE TU WEB */
  color: #ffffff;
  text-decoration: none;
  border-radius: 35px;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #8e948c;
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .cta {
    padding: 100px 20px;
  }

  .cta h2 {
    font-size: 30px;
  }

  .cta p {
    font-size: 16px;
  }

  .btn-cta {
    padding: 14px 35px;
  }
}
/* ===== BLOG SECTION ===== */

.blog-section {
  background: #f4f4f4;
  padding: 100px 40px;
}

.blog-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  transition: 0.4s ease;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-content {
  padding: 40px;
}

.blog-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: #555;
  margin-bottom: 30px;
}

.blog-link {
  font-size: 14px;
  text-decoration: none;
  color: #9da39b; /* COLOR DE TU WEB */
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

/* Línea fina elegante */

.blog-link::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #9da39b;
  margin-top: 8px;
  transition: 0.3s ease;
}

.blog-link:hover::after {
  width: 50px;
}

/* Hover card suave */

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

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

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

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

  .blog-content h3 {
    font-size: 28px;
  }

  .blog-section {
    padding: 70px 20px;
  }
}
/* ===== SECCIÓN CONTACTO CTA ===== */

.contacto-cta {
  position: relative;
  background: url("img/fondo-psicologia.jpg") center/cover no-repeat;
  padding: 100px 20px;
  color: #ffffff;
}

.contacto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.contacto-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */

.contacto-texto h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contacto-texto h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #cdd3cc;
}

.contacto-texto p {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* FORMULARIO */

.contacto-form-box {
  background: #9da39b;
  padding: 40px;
  border-radius: 12px;
}

.contacto-form-box h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

.formulario-contacto input,
.formulario-contacto textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #ffffff;
  border-radius: 6px;
  font-size: 15px;
}

.formulario-contacto input::placeholder,
.formulario-contacto textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.fila {
  display: flex;
  gap: 15px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.4;
}

.check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


.formulario-contacto button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #ffffff;
  color: #1a1a1a;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.formulario-contacto button:hover {
  background: #f0f0f0;
}

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

@media (max-width: 900px) {
  .contacto-container {
    grid-template-columns: 1fr;
  }

  .contacto-texto h2 {
    font-size: 32px;
  }

  .fila {
    flex-direction: column;
  }
}
/* ===== FOOTER ===== */

.footer {
  background: #1f1f1f;
  color: #ffffff;
  padding: 70px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
  opacity: 0.8;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

/* Línea fina hover */

.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #9da39b;
  transition: 0.3s ease;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* Redes sociales */

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: #9da39b;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
}

.footer-social a:hover {
  color: #ffffff;
}

/* Parte inferior */

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  opacity: 0.6;
}

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

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 50px 20px 20px;
  }
}
/* ===== SOBRE MI ===== */

.sobre-mi {
  background: #f4f4f4;
  padding: 100px 20px;
}

.sobre-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sobre-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.sobre-texto h2 {
  font-size: 42px;
  color: #9da39b;
  margin-bottom: 30px;
  line-height: 1.2;
}

.sobre-texto .intro {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 25px;
}

.sobre-texto p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333;
}

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

@media (max-width: 900px) {
  .sobre-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sobre-texto h2 {
    font-size: 30px;
  }

  .sobre-mi {
    padding: 70px 20px;
  }
}
/* ===== SECCIÓN BLOG ANSIEDAD ===== */

.blog-ansiedad {
  background: #f5f5f5;
  padding: 100px 20px;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Card */

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Imagen */

.blog-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Contenido */

.blog-content {
  padding: 30px;
}

.blog-cat {
  font-size: 13px;
  letter-spacing: 2px;
  color: #9da39b;
  display: block;
  margin-bottom: 15px;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

/* Enlace */

.blog-link {
  text-decoration: none;
  font-weight: 600;
  color: #9da39b;
  position: relative;
}

/* Línea fina elegante */

.blog-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #9da39b;
  transition: 0.3s ease;
}

.blog-link:hover::after {
  width: 100%;
}

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

@media (max-width: 1000px) {
  .blog-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-ansiedad {
    padding: 70px 20px;
  }
}
.metodo-seccion {
  padding: 100px 20px;
}

.fondo-claro {
  background: #f4f4f2;
}

.contenedor-metodo {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.metodo-seccion h2 {
  font-size: 34px;
  margin-bottom: 30px;
  color: #1f1f1f;
}

.metodo-seccion p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

@media (max-width: 768px) {
  .metodo-seccion {
    padding: 60px 20px;
  }

  .metodo-seccion h2 {
    font-size: 26px;
  }

  .metodo-seccion p {
    font-size: 16px;
  }
}
.seccion-coaching {
  padding: 100px 20px;
  background: #f6f3ee;
}

.container-coaching {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coaching-texto h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #a76a52; /* tono cálido elegante */
}

.coaching-texto p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #444;
}

.coaching-imagen img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Responsive móvil */

@media (max-width: 992px) {
  .container-coaching {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .coaching-texto h2 {
    font-size: 32px;
    text-align: center;
  }

  .coaching-texto p {
    font-size: 16px;
  }
}
.coaching-ayuda {
  padding: 100px 20px;
  background: #f6f3ee;
  text-align: center;
}

.container-ayuda {
  max-width: 1100px;
  margin: 0 auto;
}

.coaching-ayuda h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 70px;
  color: #a76a52; /* tono cálido elegante */
}

.lista-ayuda {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
}

.lista-ayuda ul {
  list-style: none;
  padding: 0;
}

.lista-ayuda li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

.lista-ayuda li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9da39b; /* color de tu web */
}

.nota-coaching {
  margin-top: 60px;
  font-size: 17px;
  color: #666;
  font-style: italic;
}

/* Responsive móvil */

@media (max-width: 992px) {
  .lista-ayuda {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .coaching-ayuda h2 {
    font-size: 30px;
  }

  .lista-ayuda li {
    font-size: 16px;
  }
}
.deporte-proceso {
  padding: 100px 20px;
  background: #f6f3ee;
}

.container-deporte {
  max-width: 1100px;
  margin: 0 auto;
}

.deporte-texto h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #a76a52;
  line-height: 1.3;
}

.pasos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.paso {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.numero {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e8e2d8;
  color: #a76a52;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.paso p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.frase-deporte {
  margin-top: 60px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  border-left: 4px solid #9da39b;
  padding-left: 20px;
}

/* Responsive */

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

  .deporte-texto h2 {
    font-size: 30px;
  }

  .paso p {
    font-size: 16px;
  }
}
.ventajas-deporte {
  background: #e7d3ad;
  padding: 100px 20px;
}

.container-ventajas {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.container-ventajas h2 {
  font-size: 40px;
  color: #2f2f2f;
  margin-bottom: 20px;
  font-weight: 600;
}

.linea-separador {
  width: 60px;
  height: 3px;
  background: #c88c4a;
  margin: 0 auto 70px auto;
}

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

.ventaja-card {
  background: #f3efe8;
  padding: 40px 35px;
  border-radius: 20px;
  border: 2px solid #d19a55;
  text-align: left;
  transition: 0.3s ease;
}

.ventaja-card:hover {
  transform: translateY(-5px);
}

.numero {
  font-weight: bold;
  color: #c65b3f;
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
}

.ventaja-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2f2f2f;
}

.ventaja-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */

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

  .container-ventajas h2 {
    font-size: 30px;
  }
}
.mi-proceso {
  background: #f2f4f3;
  padding: 100px 20px;
}

.container-proceso {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.container-proceso h2 {
  font-size: 38px;
  color: #2f2f2f;
  margin-bottom: 20px;
  font-weight: 600;
}

.linea-proceso {
  width: 60px;
  height: 3px;
  background: #9da39b;
  margin: 0 auto 70px auto;
}

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

.proceso-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 18px;
  border: 2px solid #9da39b;
  text-align: left;
  transition: 0.3s ease;
}

.proceso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.numero-proceso {
  font-weight: bold;
  color: #9da39b;
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
}

.proceso-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: #2f2f2f;
}

.proceso-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */

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

  .container-proceso h2 {
    font-size: 28px;
  }
}
.blog-home {
  padding: 100px 20px;
  background: #f7f7f7;
}

.container-blog {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.container-blog h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #2f2f2f;
}

.subtitulo-blog {
  max-width: 700px;
  margin: 0 auto 60px auto;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
  text-align: left;
}

.blog-categoria {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9da39b;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 22px;
  margin: 15px 0;
  color: #2f2f2f;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-btn {
  text-decoration: none;
  font-weight: 600;
  color: #9da39b;
  position: relative;
}

.blog-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #9da39b;
  transition: 0.3s;
}

.blog-btn:hover::after {
  width: 100%;
}

.blog-cta {
  margin-top: 60px;
}

.ver-todos {
  text-decoration: none;
  background: #9da39b;
  color: white;
  padding: 14px 35px;
  border-radius: 40px;
  transition: 0.3s;
}

.ver-todos:hover {
  background: #7f857d;
}

/* Responsive */

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

  .blog-card img {
    height: 220px;
  }
}
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Animación suave tipo "latido" */

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
  animation: pulse 2.5s infinite;
}

/* Responsive */

@media (max-width: 768px) {
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
}
/* ===== SECCIÓN RESERVA CITA ===== */

.reserva-cita {
  background: #f5f4f1;
  padding: 90px 20px;
}

.reserva-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reserva-texto h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #333;
}

.reserva-texto p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555;
}

.reserva-beneficios {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.reserva-beneficios li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
}

/* Botón principal */

.btn-reserva {
  display: inline-block;
  background: #9da39b;
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn-reserva:hover {
  background: #858c84;
  transform: translateY(-3px);
}

/* Caja lateral */

.reserva-box {
  background: #9da39b;
  padding: 40px;
  border-radius: 20px;
  color: white;
}

.reserva-box h3 {
  margin-bottom: 15px;
}

.reserva-box p {
  margin-bottom: 20px;
  font-size: 15px;
}

.reserva-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
}

.reserva-box button {
  width: 100%;
  padding: 14px;
  background: white;
  color: #9da39b;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.reserva-box button:hover {
  background: #f0f0f0;
}

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

@media (max-width: 900px) {

  .reserva-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reserva-texto h2 {
    font-size: 32px;
  }

}