/*
Theme Name: BienestarEco Theme
Theme URI: https://bienestareco.local/
Author: Aroita
Description: Tema personalizado para BienestarEco
Version: 1.0
License: GPL v2 or later
Text Domain: bienestareco-theme
*/

/* =====================================================
VARIABLES
===================================================== */

:root {
  --primary-color: #dd9933;
  --secondary-color: #01bfbf;

  --primary-font: "Questrial", Arial, sans-serif;
  --secondary-font: "Crimson Pro", Georgia, serif;

  --gray-900: #18181b;
  --gray-700: #3f3f46;
  --gray-500: #71717a;
  --gray-300: #d4d4d8;
  --green: #7aa21d;

  --header-height: 190px;
  --be-color-bg: #ffffff;

  --be-radius-lg: 1.5rem;
  --be-radius-md: 1rem;
  --be-radius-pill: 999px;
  --be-shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.12);
  --be-shadow-card: 0 16px 40px rgba(0, 0, 0, 0.08);
}
/* =====================================================
BASE
===================================================== */

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  color: #222;
  background-color: #f9fafb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}


/* Alternativa más precisa: solo los contenedores internos */

.be-home-servicios .be-home-servicios-grid,
.be-home-steps .be-home-steps-grid,
.be-home-profesional .be-home-profesional-grid,
.be-home-slider .be-home-slider-wrapper,
.be-home-cta,
.be-home-final-cta {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2rem;
}


.be-presentacion-content,
.be-presentacion-visual {
  min-width: 0;
  box-sizing: border-box;
}


/* paginas excepto home 

main:not(.be-home-main) {
  padding-top: 60px;
  padding-bottom: 80px;
  background: #dd993317;
}
*/

.be-home-main {
  max-width: 100%;
  margin: 0 auto;
  /*padding: 0 1.25rem 4rem; */
}

/* =====================================================
HEADER
===================================================== */

.be-header {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* topbar */

.be-topbar {
  background: var(--secondary-color);
  color: #fff;
  font-size: 14px;
}

.be-topbar-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  padding: 4px 20px;
}

.be-topbar-social a {
  color: #fff;
  margin-left: 12px;
}

/* header main */

.be-header-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px 18px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.be-header-logo {
  margin-bottom: 8px;
}

.be-logo-img {
  width: 95px;
  display: block;
  margin: auto;
}

.be-header-title h1 {
  font-family: var(--secondary-font);
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.be-header-title p {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* =====================================================
NAVBAR
===================================================== */

.be-navbar {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.be-navbar a {
  text-decoration: none !important;
  border-bottom: none !important;
}

.be-navbar-content {
  max-width: 1200px;
  margin-right: 35px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 12px 50px;
  width: 100%;
}

/* hamburguesa */

.be-navbar-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary-color);
  padding: 6px 10px;
  border-radius: 6px;
  transition: 0.2s;
}

.be-navbar-toggle:hover {
  background: #e6f9f9;
}

/* menu */

.be-menu {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.be-menu li {
  position: relative;
}

.be-menu a {
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  color: #333;
  transition: 0.2s;
}

.be-menu a:hover {
  background: #e6f9f9;
  color: var(--secondary-color);
}

.current-menu-item > a {
  background: var(--secondary-color);
  color: #fff;
}

/* =====================================================
SUBMENU
===================================================== */

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 8px 0;
  margin-top: 6px;
  min-width: 200px;
  z-index: 100;
}

.submenu li {
  width: 100%;
}

.submenu a {
  display: block;
  padding: 10px 16px;
}

.submenu a:hover {
  background: #f4f7f7;
  color: var(--secondary-color);
}

.menu-item-has-children:hover .submenu {
  display: block;
}

/* =====================================================
BOTON CONSULTA
===================================================== */

.be-btn-consulta {
  margin-left: auto;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.25s;
  display: inline-block;
  animation: bePulse 3s infinite;
}

.be-btn-consulta:hover {
  background: #c78225;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.be-btn-consulta:active {
  transform: translateY(1px);
}

@keyframes bePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* =====================================================
TITLE Y SUBTITLE DE TODAS LAS PAGINAS
===================================================== */
/* titulo */

.be-title-central {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  text-align: center;
}

/* subtitulo */

.be-subtitle-central {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  text-align: center;
  padding-bottom: 40px;
}

/* =====================================================
HOME HERO
===================================================== */

/* =====================================================
   HOME HERO — VERSION FINAL
===================================================== */

.be-home-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 80px 40px;
}

/* FONDO */

.be-home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      circle at 0% 45%,
      rgba(221,153,51,0.38) 0%,
      rgba(221,153,51,0.20) 25%,
      transparent 52%
    ),

    radial-gradient(
      circle at 100% 55%,
      rgba(1,191,191,0.40) 0%,
      rgba(1,191,191,0.22) 28%,
      transparent 55%
    ),

    radial-gradient(
      circle at 52% 50%,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.88) 38%,
      transparent 70%
    ),

    #ffffff;
}

/* CONTENEDOR */

.be-home-hero-inner {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  min-height: 400px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;

  gap: 70px;
}

/* =====================================================
   TEXTO
===================================================== */

.be-home-hero-content {
  min-width: 0;
}

/* BADGE */

.be-badge {
  display: inline-block;

  margin: 0 0 18px;

  padding: 7px 15px;

  border-radius: var(--be-radius-pill);

  background: rgba(1,191,191,0.10);

  color: var(--secondary-color);

  font-size: 14px;
  font-weight: 600;
}

/* TITULO */

.be-home-hero-title {
  margin: 0 0 22px;

  font-family: var(--secondary-font);

  font-size: clamp(3rem, 5vw, 4.6rem);

  line-height: 1.02;

  font-weight: 600;

  letter-spacing: -0.02em;

  color: var(--gray-900);
}

/* =========================================
   TITULO HERO — PALABRA DESTACADA
========================================= */

.be-home-hero-title {
  position: relative;
}

.be-title-highlight {
  position: relative;

  display: inline-block;

  color: var(--secondary-color);

  font-weight: 600;

  z-index: 1;
}


/* Línea decorativa debajo de "aquí" */

.be-title-highlight::after {
  content: "";

  position: absolute;

  left: 2%;
  bottom: -7px;

  width: 98%;
  height: 7px;

  border-bottom: 4px solid var(--secondary-color);

  border-radius: 50%;

  transform: rotate(-1.5deg);

  opacity: .95;
}

/*                               FIN TITLE                  */

/* DESCRIPCION */

.be-home-hero-desc {
  max-width: 570px;

  margin: 0 0 30px;

  font-size: 1.12rem;

  line-height: 1.65;

  color: var(--gray-700);
}

/* =====================================================
   BOTONES
===================================================== */

.be-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 14px;

  margin-bottom: 28px;
}

/* IMPORTANTE: eliminamos comportamiento extraño
   heredado de Gutenberg */

.be-home-hero-actions a {
  margin: 0 !important;
}

/* BOTON PRINCIPAL */

.be-home-hero-actions .be-btn-turquesa {
  background: var(--primary-color);
  color: #fff;

  padding: 13px 26px;

  border-radius: 10px;

  font-weight: 700;

  text-decoration: none;

  box-shadow:
    0 10px 25px rgba(221,153,51,0.28);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.be-home-hero-actions .be-btn-turquesa:hover {
  background: #c78225;

  transform: translateY(-2px);

  box-shadow:
    0 15px 30px rgba(221,153,51,0.35);
}

/* SEGUNDO BOTON */

.be-home-hero-actions .be-btn-outline {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 12px 24px;

  border: 1.5px solid var(--secondary-color);

  border-radius: 10px;

  background: #fff;

  color: var(--secondary-color);

  font-weight: 700;

  text-decoration: none;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.be-home-hero-actions .be-btn-outline:hover {
  background: var(--secondary-color);
  color: #fff;

  transform: translateY(-2px);
}

/* =====================================================
   BENEFICIOS
===================================================== */

.be-home-hero-bullets {
  display: flex;

  flex-wrap: wrap;

  gap: 10px 25px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.be-home-hero-bullets li {
  margin: 0;

  font-size: 14px;

  color: var(--gray-700);
}

.be-home-hero-bullets li::before {
  content: "✓";

  margin-right: 7px;

  color: var(--secondary-color);

  font-weight: 700;
}

/* =====================================================
   IMAGEN
===================================================== */

.be-home-hero-img {
  position: relative;

  min-width: 0;

  display: flex;

  align-items: center;
  justify-content: center;
}

/* MARCO */

/* IMAGEN JENY */

.be-hero-image-frame {
  position: relative;
  width: min(100%, 440px);
  padding: 12px;
  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      rgba(221,153,51,0.32),
      rgba(1,191,191,0.34)
    );

  box-shadow:
    0 25px 60px rgba(0,0,0,0.14),
    0 0 50px rgba(1,191,191,0.10);
}

/* IMAGEN */

.be-hero-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;

  object-fit: cover;
}

/* =====================================================
   TARJETA FLOTANTE
===================================================== */
/*
.be-floating-card {
  position: absolute;

  left: 0;
  bottom: 30px;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 12px 18px;

  background: rgba(255,255,255,0.96);

  border-radius: var(--be-radius-pill);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.14);

  white-space: nowrap;
}


.be-floating-card strong {
  font-size: 18px;

  color: var(--primary-color);
}

.be-floating-card span {
  font-size: 13px;

  color: var(--gray-700);
}
*/

/* =========================================
   TARJETAS FLOTANTES DEL HERO
========================================= */

/* =========================================
   FLOATING STATS — ESTILO COLORIDO
========================================= */

.be-floating-stats {
  position: absolute;
  left: 50%;
  bottom: -58px;
  transform: translateX(-50%);

  display: flex;
  justify-content: center;
  gap: 12px;

  width: max-content;
  z-index: 20;
}


/* TARJETA */

.be-floating-card {
  position: relative;

  width: 142px;
  height: 150px;

  box-sizing: border-box;
  padding: 14px 10px 18px;

  background: rgba(255,255,255,.97);

  border-radius: 24px;

  border: 1px solid rgba(255,255,255,.9);

  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  box-shadow: 0 18px 40px rgba(0,0,0,.14);

  transition: transform .25s ease,
              box-shadow .25s ease;
}

.be-floating-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 50px rgba(0,0,0,.18);
}


/* =========================================
   CÍRCULO DEL ICONO
========================================= */

.be-stat-icon-wrap {
  position: relative;

  width: 58px;
  height: 58px;

  margin-bottom: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* HALO EXTERIOR */

.be-stat-icon-halo {
  position: absolute;

  width: 56px;
  height: 56px;

  border-radius: 50%;

  opacity: .30;
}


/* CÍRCULO PRINCIPAL */

.be-stat-icon-wrap::before {
  content: "";

  position: absolute;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  z-index: 2;
}


/* SVG */

.be-stat-svg {
  position: relative;

  width: 28px;
  height: 28px;

  z-index: 3;
}


/* =========================================
   PEQUEÑOS DESTELLOS
========================================= */

.be-stat-spark {
  position: absolute;

  width: 8px;
  height: 3px;

  border-radius: 4px;

  z-index: 4;
}

.spark-1 {
  top: 7px;
  right: 0;

  transform: rotate(-25deg);
}

.spark-2 {
  top: 18px;
  right: -2px;

  transform: rotate(-8deg);
}


/* =========================================
   TEXTO
========================================= */

.be-floating-card strong {
  position: relative;
  z-index: 5;

  display: block;

  font-family: var(--primary-font);

  font-size: 21px;
  line-height: 1.05;

  font-weight: 800;

  margin: 0;
}

.be-floating-card small {
  position: relative;
  z-index: 5;

  display: block;

  margin-top: 7px;

  font-family: var(--primary-font);

  font-size: 11px;

  line-height: 1.25;

  color: var(--gray-700);
}


/* =========================================
   NARANJA
========================================= */

.be-stat-orange .be-stat-icon-halo {
  background: #ffdca3;
}

.be-stat-orange .be-stat-icon-wrap::before {
  background: #f5a623;
}

.be-stat-orange .be-stat-svg {
  color: white;
}

.be-stat-orange .be-stat-spark {
  background: #f5a623;
}

.be-stat-orange strong {
  color: #f39a18;
}


/* =========================================
   VERDE
========================================= */

.be-stat-green .be-stat-icon-halo {
  background: #b9f4df;
}

.be-stat-green .be-stat-icon-wrap::before {
  background: #32d4a4;
}

.be-stat-green .be-stat-svg {
  color: white;
}

.be-stat-green .be-stat-spark {
  background: #20c99a;
}

.be-stat-green strong {
  color: #16b98a;
}


/* =========================================
   AZUL
========================================= */

.be-stat-blue .be-stat-icon-halo {
  background: #c6e3ff;
}

.be-stat-blue .be-stat-icon-wrap::before {
  background: #3698ed;
}

.be-stat-blue .be-stat-svg {
  color: white;
}

.be-stat-blue .be-stat-spark {
  background: #298fe8;
}

.be-stat-blue strong {
  color: #2388df;
}


/* =========================================
   ROSA
========================================= */

.be-stat-pink .be-stat-icon-halo {
  background: #ffd1df;
}

.be-stat-pink .be-stat-icon-wrap::before {
  background: #f4517d;
}

.be-stat-pink .be-stat-svg {
  color: white;
}

.be-stat-pink .be-stat-spark {
  background: #f4517d;
}

.be-stat-pink strong {
  color: #ed4774;
}


/* =========================================
   ONDA DE COLOR INFERIOR
========================================= */

.be-floating-card::after {
  content: "";

  position: absolute;

  left: -15%;
  bottom: -48px;

  width: 130%;
  height: 82px;

  border-radius: 50% 50% 0 0;

  opacity: .35;

  z-index: 1;
}


/* naranja */

.be-stat-orange::after {
  background: linear-gradient(
    135deg,
    #ffc15c,
    #ffe8bf
  );
}


/* verde */

.be-stat-green::after {
  background: linear-gradient(
    135deg,
    #42dfb1,
    #c9f7e8
  );
}


/* azul */

.be-stat-blue::after {
  background: linear-gradient(
    135deg,
    #5db1f3,
    #d1e9fb
  );
}


/* rosa */

.be-stat-pink::after {
  background: linear-gradient(
    135deg,
    #fa7198,
    #ffd9e5
  );
}


/* ###################################### FIN FLOAT BOTONES CABECEROS   ########################################3 */

/* =========================================
   FRASE INSPIRADORA DEL HERO
========================================= */

.be-hero-slogan {
  position: relative;

  display: inline-flex;
  flex-direction: column;

  margin-top: 26px;
  margin-left: 8px;

  font-family: "Crimson Pro", Georgia, serif;

  color: #777;

  transform: rotate(-4deg);

  line-height: 1.05;
}


/* Primera línea */

.be-hero-slogan span:first-child {
  font-size: 32px;
  font-style: italic;
}


/* Segunda línea */

.be-hero-slogan span:nth-child(2) {
  margin-left: 20px;

  font-size: 25px;
  font-style: italic;
}


/* Línea naranja dibujada */

.be-hero-slogan i {
  position: relative;

  display: block;

  width: 205px;
  height: 9px;

  margin-top: 5px;
  margin-left: 38px;

  border-bottom: 4px solid rgba(221,153,51,.55);

  border-radius: 50%;

  transform: rotate(-2deg);
}


/* Pequeño toque irregular en la línea */

.be-hero-slogan i::after {
  content: "";

  position: absolute;

  left: 18px;
  bottom: -4px;

  width: 165px;
  height: 4px;

  border-bottom: 2px solid rgba(221,153,51,.25);

  border-radius: 50%;

  transform: rotate(1deg);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .be-home-hero {
    padding: 65px 25px;
  }

  .be-home-hero-inner {
    grid-template-columns: 1fr;

    gap: 50px;

    text-align: center;
  }

  .be-home-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .be-home-hero-actions {
    justify-content: center;
  }

  .be-home-hero-bullets {
    justify-content: center;
  }

  .be-home-hero-img {
    order: 2;
  }

  

  .be-floating-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =====================================================
   MOVIL
===================================================== */

@media (max-width: 600px) {

  .be-home-hero {
    min-height: auto;

    padding: 45px 18px 55px;
  }

  .be-home-hero-inner {
    gap: 38px;
  }

  .be-badge {
    font-size: 13px;

    padding: 6px 12px;
  }

  .be-home-hero-title {
    font-size: 2.65rem;

    line-height: 1.04;
  }

  .be-home-hero-desc {
    font-size: 1rem;

    line-height: 1.55;

    margin-bottom: 25px;
  }

  .be-home-hero-actions {
    flex-direction: column;

    width: 100%;

    gap: 10px;
  }

  .be-home-hero-actions a {
    width: 100%;

    box-sizing: border-box;
  }

  .be-home-hero-bullets {
    flex-direction: column;

    align-items: center;

    gap: 8px;
  }

  .be-hero-image-frame {
    max-width: 450px;
  }

  .be-hero-image-frame img {
    border-radius: 18px;
  }

  .be-floating-card {
    bottom: 15px;

    padding: 9px 14px;
  }

  .be-floating-card strong {
    font-size: 16px;
  }

  .be-floating-card span {
    font-size: 12px;
  }
}



  .be-hero-slogan {
    margin-top: 22px;
    margin-left: 0;

    transform: rotate(-3deg);
  }

  .be-hero-slogan span:first-child {
    font-size: 32px;
  }

  .be-hero-slogan span:nth-child(2) {
    margin-left: 22px;
    font-size: 29px;
  }

  .be-hero-slogan i {
    width: 235px;
    margin-left: 42px;
  }

/* =====================================================
   MOVIL PEQUEÑO
===================================================== */

@media (max-width: 400px) {

  .be-home-hero-title {
    font-size: 2.25rem;
  }

  .be-floating-card {
    display: none;
  }
}

/* =====================================================
HOME PRESENTACION
===================================================== */
/*
.be-home-presentacion {
  text-align: center;
  padding: 3.5rem 0 3rem;
  max-width: 620px;
  margin: 0 auto;
}
*/

.be-home-presentacion h2 {
  font-family: var(--be-font-serif);
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  color: var(--gray-700);
}

.be-home-presentacion p {
  margin-bottom: 1.3rem;
  font-size: 1rem;
  color: var(--gray-700);
}

/* =====================================================
SERVICIOS
===================================================== */

.be-home-servicios {
  padding: 3.5rem 0;
}

.be-home-servicios-title {
  font-family: var(--be-font-serif);
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 2.2rem;
  color: var(--gray-900);
}

.be-home-servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.be-home-servicio {
  padding: 1.8rem 1.5rem;
}

.be-home-servicio h3 {
  margin-top: 0.7rem;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  color: var(--gray-900);
  font-family: var(--be-font-serif);
}

.be-home-servicio p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Icono con pequeño “bounce” */
.be-home-servicio-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1,191,191,0.08);
  color: var(--secondary-color);
  font-size: 1.3rem;
  transition: transform .25s ease, background .25s ease;
}

/* Tarjetas servicios con tilt suave */
.be-card-hover {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transform: translateY(0) translateZ(0);
  transform-origin: center;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.be-card-hover:hover .be-home-servicio-icon {
  transform: translateY(-3px) scale(1.05);
  background: rgba(1,191,191,0.16);
}


/*nuevo parte de pagina home ------------------------*/

/* PASOS */
.be-home-steps {
  padding: 3.5rem 0;
}

.be-home-steps-title {
  font-family: var(--be-font-serif);
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.be-home-steps-sub {
  text-align: center;
  margin: 0 0 2rem;
  font-size: 0.98rem;
  color: var(--be-color-muted);
}

.be-home-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

/* Pasos con “pulsación” en el número al hacer hover */
.be-step {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform .22s ease, box-shadow .22s ease;
}

.be-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.be-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
  box-shadow: 0 0 0 4px rgba(1,191,191,0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.be-step:hover .be-step-number {
  transform: scale(1.06);
  box-shadow: 0 0 0 6px rgba(1,191,191,0.26);
}

.be-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--gray-900);
  font-family: var(--be-font-serif);
}

.be-step p {
  margin: 0;
  font-size: 0.95rem;
}

/* línea entre pasos */
.be-step-line {
  position: relative;
}

.be-step-line::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -18%;
  width: 36%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0.5;
}

/* PROFESIONAL */



/*###  ###  ###  ###  */

/* =====================================================
section blog en home
===================================================== */

/* SLIDER BLOG */
.be-home-slider {
  padding: 3.5rem 0;
}

.be-home-slider-title {
  font-family: var(--be-font-serif);
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 2rem;
  color: var(--be-color-dark);
}

.be-home-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.be-home-slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow: hidden;
  flex: 1;
}

.be-home-slider-item {
  min-width: calc(33.333% - 0.7rem);
}


/* Tarjeta de post más marcada */
.be-home-slider-item a {
  display: block;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.be-home-slider-item a:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
  background: #fffdf8;
}

.be-home-slider-img {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* Título post con subrayado animado */
.be-home-slider-title-item {
  font-family: var(--secondary-font);
  font-size: 1rem;
  margin: .7rem 1rem 1rem;
  color: var(--gray-900);
  position: relative;
  display: inline-block;
}

.be-home-slider-title-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width .25s ease;
}

.be-home-slider-item a:hover .be-home-slider-title-item::after {
  width: 100%;
}
/* Flechas con micro escale */
.be-slider-arrow {
  background: #ffffff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: background .2s ease, transform .15s ease, box-shadow .15s ease;
  color: var(--gray-900);
}

.be-slider-arrow:hover {
  background: rgba(221,153,51,0.1);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
}
/* --------------------  */

.be-home-faq {
  max-width: 800px;
  margin: 80px auto;
}

.be-faq-item {
  border-bottom: 1px solid #ddd;
}

.be-faq-item button {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.be-faq-content {
  display: none;
  padding: 10px 15px;
  color: #666;
}

.be-faq-item.active .be-faq-content {
  display: block;
}
/*
.be-home-final-cta {
  background: #2b2b2b;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.be-home-final-cta h2 {
  color: #fff;
  margin-bottom: 10px;
}

*/
/*###############################################################*/

/* =====================================================
CTA
===================================================== */

/* CTAs */
.be-home-cta {
  text-align: center;
  padding: 3.5rem 0 2.5rem;
}

.be-home-cta h2 {
  font-family: var(--be-font-serif);
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
  color: var(--be-color-dark);
}

.be-home-cta p {
  margin-bottom: 1.3rem;
  color: var(--be-color-text);
}

/* CTA final con degradado naranja/turquesa muy suave */
.be-home-final-cta {
  text-align: center;
  padding: 3.5rem 0 2.8rem;
  background: radial-gradient(circle at top, rgb(221 153 51 / 68%) 0, #01bfbf 55%
  );
  margin-top: 1.5rem;
}

.be-home-final-cta h2 {
  font-family: var(--be-font-serif);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--be-color-dark);
}

.be-home-final-cta p {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  color: var(--be-color-text);
}

.be-home-agenda {
  margin-top: 2rem;
}
/* REVEAL SCROLL */
.be-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}


.be-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  padding: 60px;
}

/* ===================================================== */

/*------------------------------------------------------------------------------------------------------------------------------------------------*/

/* Blog moderno y bonito */
.be-blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}
.be-article {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px #01bfbf22;
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.be-article:hover {
  box-shadow: 0 4px 32px #01bfbf44;
}
.be-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}
.be-meta {
  font-size: 0.95rem;
  color: #01bfbf;
  margin-bottom: 1rem;
}
.be-entry-content {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}
.be-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: #01bfbf;
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px #01bfbf33;
  transition: background 0.2s;
  text-decoration: none;
}
.be-btn:hover {
  background: #019e9e;
}
.be-pagination {
  margin-top: 3rem;
  text-align: center;
}
.be-no-posts {
  color: #888;
  font-size: 1.2rem;
  text-align: center;
  margin: 2rem 0;
}

/* =============================
   ANIMACIONES Y ESTILO BLOG
============================= */
.animate-fadeIn {
  animation: fadeIn 1s both;
}
.animate-slideUp {
  animation: slideUp 1s both;
}
.animate-bounceIn {
  animation: bounceIn 1.2s both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.8);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Modal cita */
.be-modal-cita-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.18);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.be-modal-cita {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(1, 191, 191, 0.13);
  padding: 2.2rem 2rem 2rem 2rem;
  min-width: 320px;
  max-width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.be-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray-400);
  cursor: pointer;
}
.be-modal-cita h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.be-modal-cita form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/*####################################################################################*/

.be-blog-content {
  flex: 1 1 600px;
  min-width: 0;
}
.be-blog-title {
  color: var(--primary-color);
  font-size: 2.1rem;
  font-family: var(--primary-font);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* =====================================================
LAYOUT
===================================================== */

.be-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 60px;
}

/* =====================================================
PÁGINAS
===================================================== */

/* =====================================================
    PAGINA CONTACTO
    ===================================================== */

.be-contacto-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.be-contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* =====================================================
    ----INFO CONTACTO
    ===================================================== */

.be-contacto-title {
  font-size: 34px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.be-contacto-sub {
  font-size: 22px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.be-contacto-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.be-contacto-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #444;
}

.be-contacto-lista i {
  color: var(--secondary-color);
  font-size: 18px;
}

/* redes sociales */

.be-contacto-social {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.be-contacto-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f7f7;
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 16px;
  transition: all 0.25s;
}

.be-contacto-social a:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}

/*reddes articulos */
.mia-share {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mia-share button {
  padding: 10px 14px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  background: #f2f2f2;
  transition: 0.3s;
}

.mia-share button:hover {
  background: #ddd;
}

/* =====================================================
    FORMULARIO
    ===================================================== */

.be-contacto-formulario {
  background: #fff;
  padding: 30px;
  border-radius: var(--be-radius-md);
  box-shadow: var(--be-shadow-card);
}

.be-form-contacto {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.be-form-row {
  display: flex;
  gap: 14px;
}

.be-form-row input,
.be-form-row select,
.be-form-row textarea {
  width: 90%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--primary-font);
  background: #fafafa;
  transition: all 0.2s;
}

.be-form-row textarea {
  resize: vertical;
}

.be-form-row input:focus,
.be-form-row select:focus,
.be-form-row textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(1, 191, 191, 0.1);
}

/* ------------ checkbox de form: he leido y acepto */

.be-form-checkbox {
  font-size: 14px;
  color: #555;
}

.be-form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.be-form-checkbox input[type="checkbox"] {
  margin-top: 3px;
}

/*------------------------ End page contact -------------------

.be-sobremi-foto {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
}
 */

/* ------------------------- page planes de precios- SERVICIOS -----*/
/* =====================================================
SERVICIOS
===================================================== */

.be-servicios-section {
  max-width: 1200px;
  margin: auto;
  /* padding: 40px 20px 80px; */
  text-align: center;
}

/* titulo */

.be-servicios-title {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* subtitulo */

.be-servicios-sub {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  padding-bottom: 40px;
}

/* grid planes */

.be-servicios-planes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  align-items: stretch;
}

/* card */

.be-servicios-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

/* hover card */

.be-servicios-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* card destacada */

.be-servicios-card-popular {
  border: 3px solid var(--secondary-color);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* etiqueta popular */

.be-servicios-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* titulo plan */

.be-servicios-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* descripcion */

.be-servicios-desc {
  color: #dd9933;
  font-size: 20px;
  margin-bottom: 25px;
}

/* precio */

.be-servicios-precio {
  font-weight: 700;
  margin: 25px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  text-align: center;
  margin: 25px 0;
}

.be-servicios-precio span:first-child {
  font-size: 42px;
}

.be-servicios-euro {
  font-size: 24px;
}

.be-servicios-mes {
  font-size: 15px;
  color: #777;
}

/* lista */

.be-servicios-lista {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.be-servicios-lista li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  color: #555;
}
.be-servicios-lista li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

/* check icon */

/* boton */

.be-servicios-btn {
  display: block;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
}

.be-servicios-btn:hover {
  transform: translateY(-2px);
}

/* BOTON OSCURO */
.be-servicios-btn.be-btn-dark {
  background: #1f2937;
  color: #fff;
}

.be-servicios-btn.be-btn-dark:hover {
  background: #111827;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* BOTON TURQUESA*/
.be-servicios-btn.be-btn-turquesa {
  background: var(--secondary-color);
  color: #fff;
}

.be-servicios-btn.be-btn-turquesa:hover {
  background: #00a7a7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =====================================================
BLOG
===================================================== */

/* =====================================================
---BLOG LAYOUT
===================================================== */

.be-blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: start;
}

/*
.be-blog-main {
  padding-bottom: 80px;
}
  */

/* =====================================================
---POST GRID
===================================================== */

.be-post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* =====================================================
---POST CARD
===================================================== */

.be-post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.be-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* imagen */

.be-post-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* categoría */

.be-post-category {
  font-size: 13px;
  margin-bottom: 6px;
}

.be-post-category a {
  background: var(--secondary-color);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 5px;
  text-decoration: none;
  font-size: 12px;
}

/* título */

.be-post-title {
  font-size: 22px;
  margin: 10px 0;
}

.be-post-title a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
}

.be-post-title a:hover {
  color: #009999;
}

/* fecha */

.be-post-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

/* texto */

.be-post-excerpt {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* leer más */

.be-read-more {
  color: var(--primary-color);
  font-weight: 600;
}

.be-read-more:hover {
  color: #c78225;
}

/* =====================================================
SIDEBAR
===================================================== */

.be-sidebar {
  /*width: 300px; */
  position: sticky;
}

.be-sidebar .widget,
.be-sidebar .widget_block {
  background: #b8e9e947;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.be-sidebar .widget-title,
.be-sidebar h2 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* =====================================================
---SIDEBAR LISTAS
===================================================== */

.be-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* items */

.be-sidebar li {
  margin-bottom: 10px;
  border-bottom: 1px solid #b8e9e947;
}

/* enlaces */

.be-sidebar a {
  display: block;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* hover */

.be-sidebar a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

/* últimas entradas */

.wp-block-latest-posts__post-title {
  font-weight: 500;
}

/* archivo */

.wp-block-archives a {
  font-size: 15px;
}

/* menú personalizado */

.be-sidebar .menu a {
  font-weight: 500;
}

/*  MEJORAR SUBMENUS DEL WIDGET*/
/* SUBMENU SIDEBAR */
.be-sidebar .sub-menu {
  margin-left: 15px;
  padding-left: 10px;
  border-left: 2px solid #eee;
  margin-top: 6px;
}

.be-sidebar .sub-menu a {
  font-size: 14px;
  color: #666;
}

/* LINKS PRINCIPALES MAS INFO */

.be-sidebar .menu > li > a {
  font-weight: 600;
  color: var(--primary-color);
}
/*
.be-sidebar h2,
.be-sidebar h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget li {
  margin-bottom: 8px;
}
   */

/* =====================================================
SINGLE POST
===================================================== */

.be-single-post {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.be-single-title {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.be-single-content {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* end blog ------------------*/

/* =====================================================
SOBRE MI
===================================================== */

/* =====================================================
   SOBRE MÍ — DISEÑO PREMIUM BIENESTARECO
===================================================== */

.be-sobremi-main {
    width: 100%;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    border-top: none !important;
}
/* El contenido de Sobre mí comienza justo después del header */

.be-sobremi-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-top: none !important;
}


/* =====================================================
   SECCIÓN PRINCIPAL
===================================================== */

.be-sobremi-section {
  position: relative;

  width: 100%;
  max-width: none !important;

  margin: 0 !important;

  /*padding: 90px 40px 100px !important; */

  box-sizing: border-box;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 0% 20%,
      rgba(221,153,51,.14),
      transparent 35%
    ),
    radial-gradient(
      circle at 100% 80%,
      rgba(1,191,191,.13),
      transparent 38%
    ),
    #fff;
}


/* Decoraciones */

.be-sobremi-section::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: rgba(221,153,51,.07);

  left: -220px;
  top: 180px;
}


.be-sobremi-section::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: rgba(1,191,191,.07);

  right: -180px;
  bottom: 100px;
}


/* =====================================================
   TÍTULO CENTRAL
===================================================== */

.be-sobremi-section > .be-title-central {
  position: relative;

  z-index: 2;

  margin: 0 auto 65px !important;

  text-align: center;

  font-family: var(--secondary-font) !important;

  font-size: clamp(3rem, 5vw, 4.5rem) !important;

  line-height: 1;

  font-weight: 600;

  color: var(--gray-900) !important;
}


.be-sobremi-section > .be-title-central::after {
  content: "";

  display: block;

  width: 80px;
  height: 4px;

  margin: 18px auto 0;

  border-radius: 50%;

  background: var(--primary-color);

  transform: rotate(-2deg);
}


/* =====================================================
   GRID
===================================================== */

.be-sobremi-grid {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1100px;

  margin: 0 auto !important;

  display: grid !important;

  grid-template-columns:
    350px
    minmax(0, 1fr) !important;

  gap: 85px !important;

  align-items: center !important;
}

/* =========================================
COLUMNA IZQUIERDA
========================================= */


/* =====================================================
   COLUMNA PERFIL
===================================================== */

.be-sobremi-perfil {
  position: relative;

  text-align: center;

  padding: 35px 25px;

  border-radius: 28px;

  background: rgba(255,255,255,.78);

  border: 1px solid rgba(221,153,51,.12);

  box-shadow:
    0 20px 50px rgba(0,0,0,.08);

  backdrop-filter: blur(8px);
}


/* =====================================================
   FOTO
===================================================== */

.be-sobremi-foto {
  position: relative;

  width: 230px !important;
  height: 230px !important;

  margin: 0 auto 24px !important;

  padding: 6px !important;

  box-sizing: border-box;

  border-radius: 50% !important;

  background:
    linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );

  overflow: hidden;

  box-shadow:
    0 18px 40px rgba(0,0,0,.15);
}


.be-sobremi-foto img {
  display: block !important;

  width: 100% !important;
  height: 100% !important;

  max-width: none !important;

  margin: 0 !important;

  object-fit: cover !important;

  object-position: center top !important;

  border-radius: 50% !important;
}


/* Frase */

.be-sobremi-perfil > p:first-of-type {
  margin: 0 0 24px;

  font-family: var(--secondary-font);

  font-size: 18px;

  line-height: 1.35;

  color: var(--gray-900);
}


/* =====================================================
   REDES
===================================================== */

.be-sobremi-social {
  margin: 20px 0 25px !important;
}


.be-sobremi-social p {
  margin: 0 !important;
}


.be-sobremi-social a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  margin: 0 4px;

  border-radius: 50%;

  background: rgba(1,191,191,.09);

  color: var(--secondary-color);

  text-decoration: none;

  font-size: 17px;

  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease;
}


.be-sobremi-social a:hover {
  background: var(--secondary-color);

  color: #fff;

  transform: translateY(-3px);
}


/* Contacto */

.be-sobremi-perfil > p:not(:first-of-type) {
  margin: 12px 0;

  font-size: 14px;

  color: var(--gray-700);
}

/* =========================================
COLUMNA DERECHA
========================================= */
/* =====================================================
   COLUMNA TEXTO
===================================================== */

.be-sobremi-texto {
  position: relative;

  padding: 45px 50px;

  background: rgba(255,255,255,.88);

  border-radius: 30px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.07);

  border: 1px solid rgba(1,191,191,.08);
}


/* Título */

.be-sobremi-title {
  position: relative;

  margin: 0 0 25px !important;

  font-family: var(--secondary-font) !important;

  font-size: clamp(2.4rem, 4vw, 3.5rem) !important;

  line-height: 1.08;

  color: var(--gray-900) !important;
}


.be-sobremi-title::after {
  content: "";

  display: block;

  width: 95px;
  height: 4px;

  margin-top: 13px;

  background: var(--primary-color);

  border-radius: 50%;

  transform: rotate(-2deg);
}


/* Subtítulo */

.be-sobremi-sub {
  margin-bottom: 25px !important;

  padding-left: 18px;

  border-left: 4px solid var(--secondary-color);

  color: var(--secondary-color) !important;

  font-size: 17px;

  line-height: 1.55;

  font-weight: 700;
}


/* Párrafos */

.be-sobremi-texto > p:not(.be-sobremi-sub) {
  margin: 0 0 19px;

  color: var(--gray-700);

  font-size: 15px;

  line-height: 1.7;
}


.be-sobremi-texto strong {
  color: var(--gray-900);
}


/* =====================================================
   BOTÓN
===================================================== */

.be-sobremi-cta {
  position: relative;

  z-index: 3;

  width: 100%;
  max-width: 1100px;

  margin: 45px auto 0;

  display: flex;

  justify-content: center;
}


.be-sobremi-cta .be-btn-turquesa {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 15px 28px;

  border-radius: 12px;

  background: var(--primary-color);

  color: #fff;

  text-decoration: none;

  font-weight: 700;

  box-shadow:
    0 12px 30px rgba(221,153,51,.25);

  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}


.be-sobremi-cta .be-btn-turquesa span {
  font-size: 21px;

  transition: transform .2s ease;
}


.be-sobremi-cta .be-btn-turquesa:hover {
  background: #c78225;

  transform: translateY(-3px);

  box-shadow:
    0 18px 35px rgba(221,153,51,.32);
}


.be-sobremi-cta .be-btn-turquesa:hover span {
  transform: translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .be-sobremi-section {
    padding: 70px 25px 80px !important;
  }

  .be-sobremi-grid {
    grid-template-columns: 300px minmax(0,1fr) !important;

    gap: 40px !important;
  }

  .be-sobremi-foto {
    width: 200px !important;
    height: 200px !important;
  }

  .be-sobremi-texto {
    padding: 35px 30px;
  }
}

/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 700px) {

  .be-sobremi-section {
    padding: 55px 18px 65px !important;
  }

  .be-sobremi-section > .be-title-central {
    margin-bottom: 40px !important;

    font-size: 3rem !important;
  }

  .be-sobremi-grid {
    grid-template-columns: 1fr !important;

    gap: 35px !important;
  }

  .be-sobremi-perfil {
    max-width: 400px;

    margin: 0 auto;
  }

  .be-sobremi-texto {
    padding: 30px 24px;

    border-radius: 24px;
  }

  .be-sobremi-title {
    font-size: 2.5rem !important;
  }

  .be-sobremi-texto > p:not(.be-sobremi-sub) {
    font-size: 15px;
  }

  .be-sobremi-cta {
    margin-top: 35px;
  }

  .be-sobremi-cta .be-btn-turquesa {
    width: 100%;
    max-width: 320px;
  }
}


/* =====================================================
FOOTER
===================================================== */

/* FOOTER LINKS */
.be-footer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.be-footer a:hover {
  color: #fff;
}

.be-footer-content {
  max-width: 1100px; /*  más estrecho = más centrado visual */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px; /*  más aire entre columnas */
  align-items: start;
}

.be-footer-col {
  text-align: left; /*  mantenemos legibilidad */
}


/* LISTAS FOOTER */
.be-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.be-footer li {
  margin-bottom: 10px;
}


/* TITULOS */
.be-footer-col h3 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #fff;
}

/* OPCIONAL: texto general */
.be-footer {
  background: var(--gray-900); /* 🔥 mejor que primary (más elegante) */
  color: #fff;
   padding: 80px 40px 30px;
}

/* COPYRIGHT */
.be-footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.be-footer h3 {
  margin-bottom: 15px;
}

.be-footer p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}
/* NEWSLETTER INPUT */
.be-footer input {
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-top: 15px;
  width: 100%;
}
.be-footer button {
  margin-top: 12px;
  width: fit-content;
  padding: 10px;
  border: none;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
/* SOCIAL ICONS */
.be-footer .fa-brands {
  margin-right: 10px;
  font-size: 18px;
}





/* =====================================================
RESPONSIVE  --ok
===================================================== */

@media (max-width: 900px) {
  main,
  .be-home-main,
  .be-contacto-main,
  .be-sobremi-main{
    padding-bottom: 1rem !important;
    background: #dd993317;
  }
  .be-home-main {
    max-width: 960px;
    padding: 0 1.1rem 3rem;
  }

  /* contenedor navbar */
  .be-navbar-content {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px;
  }

  /* hamburguesa arriba */
  .be-navbar-toggle {
    display: block;
    align-self: flex-start;
    margin-bottom: 15px;
  }

  /* menú en columna */
  .be-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: flex-start;
  }

  /* menú abierto */
  .be-menu.open {
    display: flex;
  }

  /* enlaces del menú */
  .be-menu li a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
  }

  /* submenu móvil */

  .submenu {
    position: relative;
    box-shadow: none;
    margin-top: 4px;
    padding-left: 10px;
  }

  .menu-item-has-children:hover .submenu {
    display: none;
  }

  .menu-item-has-children.open .submenu {
    display: block;
  }

  /* botón consulta movil */

  .be-btn-consulta {
    order: 3;
    margin: 10px;
    width: 80%;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
  }

  /* PAGE SERVICIOS ---------------------------------------- */
  .be-servicios-planes {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .be-servicios-card-popular {
    transform: none;
  }

  .be-servicios-section {
    padding: 30px 20px 60px;
  }

  .be-servicios-title {
    font-size: 32px;
  }

  /* BLOG ---------------------------------------- */

  .be-blog-layout {
    grid-template-columns: 1fr;
  }

  .be-post-grid {
    grid-template-columns: 1fr;
  }

  .be-sidebar {
    position: relative;
    top: auto;
  }

  /* PAGE CONTACT ---------------------------------------- */
  .be-contacto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .be-form-row {
    flex-direction: column;
  }

  .be-contacto-title {
    font-size: 28px;
  }

  /* page sobre mi ---------------------------------------- */
  .be-sobremi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .be-sobremi-texto {
    max-width: 100%;
  }

  .be-sobremi-title {
    font-size: 28px;
  }

  .be-sobremi-sub {
    font-size: 16px;
  }
  /*pagina inicio .------------------------- */
  /* =====================================
HERO
===================================== */

  /* Hero algo más compacto, aún en dos columnas */
  .be-home-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    padding-top: 4.5rem;
  }

  .be-home-hero-title {
    font-size: 2.4rem;
  }

  .be-home-hero-desc {
    font-size: 16px;
    margin: 0 auto 25px;
  }

  .be-home-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .be-home-hero-img img {
    max-width: 260px;
  }

  /* =====================================
PRESENTACION
===================================== */
/*
  .be-home-presentacion {
    padding: 30px 20px;
    margin: 50px 20px;
  }
 */

  /* =====================================
SERVICIOS
===================================== */

  .be-home-servicios {
    padding: 50px 20px;
  }

  /* Servicios y pasos a 2 columnas */
  .be-home-servicios-grid,
  .be-home-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Profesional en una columna, foto arriba */
  .be-home-profesional-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .be-home-profesional-img {
    order: -1;
  }

  /* =====================================
BLOG SLIDER
===================================== */

  .be-home-slider-wrapper {
    flex-direction: column;
  }

  .be-home-slider-track {
    flex-direction: column;
    align-items: center;
  }

  /* Slider muestra 2 posts */
  .be-home-slider-item {
    min-width: calc(50% - 0.6rem);
  }

  /* ocultar flechas en móvil */

  .be-slider-arrow {
    display: none;
  }
  /*--------------------pasos  --------*/
  /* Línea entre pasos se acorta */
  .be-step-line::after {
    right: -14%;
    width: 28%;
  }

  /* =====================================
CTA FINAL
===================================== */

  .be-home-cta {
    padding: 60px 20px;
    margin: 40px 20px;
    border-radius: 18px;
  }

  .be-home-cta h2 {
    font-size: 26px;
  }

  .be-home-cta p {
    font-size: 15px;
  }

  .be-home-steps-grid {
    grid-template-columns: 1fr;
  }

  .be-home-profesional-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===========================
   Hasta 768px (tablet vertical / móvil grande)
   =========================== */
@media (max-width: 768px) {
  .be-home-main {
    padding: 0 1rem 3rem;
  }
  

  /* Hero pasa a una columna: primero texto, luego imagen */
  .be-home-hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 4rem 0 2.8rem;
    gap: 2rem;
    text-align: left;
  }

  .be-home-hero-content {
    max-width: 520px;
  }

  .be-home-hero-img {
    max-width: 320px;
    margin: 0 auto;
  }

  .be-floating-card {
    left: 5%;
    bottom: 6%;
  }

  .be-home-hero-actions {
    justify-content: flex-start;
  }

  .be-home-hero-bullets {
    gap: 0.5rem 1rem;
  }

  /* Pads de secciones más cortos */
  
  .be-home-servicios,
  .be-home-steps,
  
  .be-home-slider,
  .be-home-cta {
    padding: 2.5rem 0 2.2rem;
  }
  
  
  .be-home-servicios,
  .be-home-steps,

  .be-home-slider,
  .be-home-cta,
  .be-home-final-cta,
  .be-home-agenda {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Servicios y pasos a 1 columna */
  .be-home-servicios-grid,
  .be-home-steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Línea entre pasos se oculta (para no ensuciar) */
  .be-step-line::after {
    display: none;
  }

  /* Profesional más compacto */
  .be-home-profesional-grid {
    gap: 2rem;
  }

  .be-home-profesional-img img {
    max-width: 210px;
  }

  /* Slider en columna; flechas arriba/abajo */
  .be-home-slider-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .be-home-slider-track {
    gap: 0.8rem;
  }

  .be-home-slider-item {
    min-width: 100%;
  }

  /* CTA final “tarjeta” a ancho completo */
  .be-home-final-cta {
    border-radius: 1.2rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  

  .be-footer-content {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    text-align: center;
  
    }
}

/* ===========================
   Hasta 480px (móvil pequeño)
   =========================== */
@media (max-width: 480px) {
  /* Título hero más pequeño */
  .be-home-hero-title {
    font-size: 2.1rem;
  }

  /* Botones a ancho completo */
  .be-home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .be-btn-turquesa,
  .be-btn-outline,
  .be-btn-dark {
    width: 100%;
    justify-content: center;
  }

  /* Titulares más contenidos */
  .be-home-presentacion h2,
  .be-home-servicios-title,
  .be-home-steps-title,
  .be-home-profesional-text h2,
  .be-home-slider-title,
  .be-home-cta h2,
  .be-home-final-cta h2 {
    font-size: 1.6rem;
  }

  /* Padding algo más pequeño en tarjetas */
  .be-home-servicio,
  .be-step {
    padding: 1.4rem 1.2rem;
  }

  .be-home-profesional-img img {
    max-width: 190px;
  }
}

.be-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* movil   cabecero iconos float   */
/* =========================================
   HERO RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .be-floating-stats {
    gap: 7px;
  }

  .be-floating-card {
    width: 120px;
    min-height: 95px;
    padding: 10px 8px;
  }

  .be-floating-card strong {
    font-size: 14px;
  }

  .be-floating-card small {
    font-size: 10px;
  }
}


@media (max-width: 900px) {

  .be-floating-stats {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;

    width: 100%;
    max-width: 500px;

    margin: -25px auto 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .be-floating-card {
    width: 100%;
    min-height: 90px;
  }
}


@media (max-width: 600px) {

  .be-floating-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -20px;
    gap: 8px;
  }

  .be-floating-card {
    min-height: 82px;
    padding: 9px 6px;
    border-radius: 16px;
  }

  .be-stat-icon {
    font-size: 17px;
  }

  .be-floating-card strong {
    font-size: 13px;
  }

  .be-floating-card small {
    font-size: 9px;
  }
}

/*MEJORAR IMAGEN CABECERO */
/* =========================================
   AJUSTE FINAL TAMAÑO FOTO HERO
========================================= */

.be-home-hero .be-hero-image-frame {
  width: 420px !important;
  max-width: 420px !important;
  box-sizing: border-box;
}

.be-home-hero .be-hero-image-frame img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

/*BLOQUE SOY JENNYFER HOME */



/*BLOQUE  CTA: ¿Listo para empezar tu cambio? */
/* =========================================
   CTA FINAL HOME
========================================= */

.be-home-cta {
  position: relative;

  width: 100%;
  box-sizing: border-box;

  padding: 100px 30px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(221,153,51,.32),
      transparent 48%
    ),
    radial-gradient(
      circle at 100% 50%,
      rgba(1,191,191,.32),
      transparent 48%
    ),
    linear-gradient(
      135deg,
      #fffaf2 0%,
      #ffffff 48%,
      #f0ffff 100%
    );
}


/* Decoración */

.be-home-cta::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background: rgba(221,153,51,.10);

  left: -100px;
  top: -100px;

  filter: blur(5px);
}


.be-home-cta::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: rgba(1,191,191,.10);

  right: -100px;
  bottom: -120px;

  filter: blur(5px);
}


/* =========================================
   CONTENIDO
========================================= */

.be-cta-inner {
  position: relative;

  z-index: 2;

  max-width: 850px;

  margin: 0 auto;

  padding: 55px 45px;

  box-sizing: border-box;

  text-align: center;

  background: rgba(255,255,255,.78);

  border: 1px solid rgba(255,255,255,.9);

  border-radius: 32px;

  box-shadow:
    0 25px 70px rgba(0,0,0,.10);

  backdrop-filter: blur(12px);
}


/* =========================================
   ETIQUETA
========================================= */

.be-cta-label {
  display: inline-block;

  margin-bottom: 18px;

  padding: 7px 17px;

  border-radius: 999px;

  background: rgba(1,191,191,.10);

  color: var(--secondary-color);

  font-size: 13px;

  font-weight: 700;
}


/* =========================================
   TITULO
========================================= */

.be-cta-inner h2 {
  margin: 0 0 20px;

  font-family: var(--secondary-font);

  font-size: clamp(2.8rem, 5vw, 4.4rem);

  line-height: 1.03;

  font-weight: 600;

  color: var(--gray-900);
}


.be-cta-inner h2 span {
  position: relative;

  display: inline-block;

  color: var(--secondary-color);
}


/* Subrayado */

.be-cta-inner h2 span::after {
  content: "";

  position: absolute;

  left: 2px;
  bottom: -7px;

  width: 100%;
  height: 5px;

  border-bottom: 3px solid var(--primary-color);

  border-radius: 50%;

  transform: rotate(-2deg);
}


/* =========================================
   TEXTO
========================================= */

.be-cta-inner > p {
  max-width: 650px;

  margin: 0 auto 30px;

  font-size: 17px;

  line-height: 1.65;

  color: var(--gray-700);
}


/* =========================================
   BOTÓN
========================================= */

.be-cta-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  padding: 15px 30px;

  background: var(--primary-color);

  color: #fff;

  border-radius: 12px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 700;

  box-shadow:
    0 12px 30px rgba(221,153,51,.28);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}


.be-cta-btn span {
  font-size: 22px;

  line-height: 1;

  transition: transform .2s ease;
}


.be-cta-btn:hover {
  background: #c78225;

  transform: translateY(-3px);

  box-shadow:
    0 18px 35px rgba(221,153,51,.35);
}


.be-cta-btn:hover span {
  transform: translateX(5px);
}


/* =========================================
   NOTA INFERIOR
========================================= */

.be-cta-note {
  margin-top: 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  font-size: 12px;

  color: var(--gray-500);
}


.be-cta-note span:first-child {
  color: var(--secondary-color);

  font-weight: 800;
}

@media (max-width: 600px) {

  .be-home-cta {
    padding: 65px 18px;
  }

  .be-cta-inner {
    padding: 40px 22px;

    border-radius: 24px;
  }

  .be-cta-inner h2 {
    font-size: 2.7rem;
  }

  .be-cta-inner > p {
    font-size: 15px;
  }

  .be-cta-btn {
    width: 100%;
    box-sizing: border-box;
  }

  .be-cta-note {
    flex-wrap: wrap;
  }
}

/*PLUGIN CALENDARIO Fluent Booking ############################################3 */
/* =========================================
   FLUENT BOOKING — BIENESTARECO
========================================= */

.be-home-agenda {
  position: relative;
  width: 100%;
  box-sizing: border-box;

  padding: 90px 25px;

  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(221,153,51,.16),
      transparent 42%
    ),
    radial-gradient(
      circle at 100% 50%,
      rgba(1,191,191,.18),
      transparent 42%
    ),
    #f8fafb;
}


/* CONTENEDOR PRINCIPAL */

.be-home-agenda .fcal_cal_wrap {
  max-width: 1000px !important;

  margin: 0 auto !important;

  border-radius: 28px;

  overflow: hidden;

  background: #fff;

  box-shadow:
    0 25px 70px rgba(0,0,0,.10);

  border: 1px solid rgba(1,191,191,.12);
}


/* =========================================
   COLUMNA IZQUIERDA
========================================= */

.be-home-agenda .fcal_side {
  background:
    linear-gradient(
      160deg,
      #fffaf2 0%,
      #ffffff 100%
    );

  border-right: 1px solid #edf0f2;
}


/* AVATAR */

.be-home-agenda .fcal_author_avatar {
  width: 72px !important;
  height: 72px !important;

  border-radius: 50% !important;

  overflow: hidden;

  border: 4px solid rgba(221,153,51,.22);

  box-shadow:
    0 8px 20px rgba(0,0,0,.10);
}


.be-home-agenda .fcal_author_avatar img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* NOMBRE */

.be-home-agenda .fcal_author_name {
  font-weight: 700 !important;

  color: var(--gray-900) !important;
}


/* TÍTULO RESERVA */

.be-home-agenda .fcal_slot_heading {
  font-family: var(--secondary-font) !important;

  font-size: 28px !important;

  color: var(--gray-900) !important;
}


/* INFORMACIÓN */

.be-home-agenda .fcal_icon_item,
.be-home-agenda .fcal_slot_payment_item {
  color: var(--gray-700) !important;
}


/* PRECIO */

.be-home-agenda .fcal_slot_payment_item {
  color: var(--primary-color) !important;

  font-weight: 700;
}


/* =========================================
   CALENDARIO
========================================= */

.be-home-agenda .fcal_date_wrapper {
  background: #fff;
}


.be-home-agenda .calendar-month-year h2 {
  font-family: var(--secondary-font) !important;

  font-size: 24px !important;

  color: var(--gray-900) !important;
}


.be-home-agenda .calendar-month-year h2 span {
  color: var(--secondary-color);
}


/* DÍAS DE LA SEMANA */

.be-home-agenda .day-name {
  color: var(--gray-500) !important;

  font-weight: 700 !important;

  text-transform: uppercase;

  font-size: 11px;
}


/* DÍAS */

.be-home-agenda .day {
  border-radius: 10px;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}


/* DÍAS DISPONIBLES */

.be-home-agenda .day.day-enabled {
  background: rgba(1,191,191,.07);

  color: var(--gray-900);

  cursor: pointer;
}


/* HOVER */

.be-home-agenda .day.day-enabled:hover {
  background: var(--secondary-color) !important;

  color: #fff !important;

  transform: translateY(-2px);
}


/* DÍAS DESHABILITADOS */

.be-home-agenda .day.day-disabled {
  opacity: .45;
}


/* =========================================
   BOTONES DE NAVEGACIÓN
========================================= */

.be-home-agenda .calendar_nav button {
  width: 38px;
  height: 38px;

  border-radius: 50% !important;

  border: 1px solid #e6eaed !important;

  background: #fff !important;

  color: var(--secondary-color) !important;

  transition: .2s ease;
}


.be-home-agenda .calendar_nav button:hover {
  background: var(--secondary-color) !important;

  color: #fff !important;

  border-color: var(--secondary-color) !important;
}


/* =========================================
   ZONA HORARIA
========================================= */

.be-home-agenda .fcal_timezone_select label {
  color: var(--gray-700) !important;

  font-weight: 600;
}


.be-home-agenda .fcal_timezone_selector {
  border-radius: 12px !important;

  border: 1px solid #dfe5e8 !important;

  background: #fff !important;
}


/* =========================================
   BOTONES / ELEMENTOS ACTIVOS
========================================= */

.be-home-agenda button,
.be-home-agenda [role="button"] {
  font-family: var(--primary-font);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .be-home-agenda {
    padding: 70px 18px;
  }

  .be-home-agenda .fcal_cal_wrap {
    border-radius: 22px;
  }
}


@media (max-width: 600px) {

  .be-home-agenda {
    padding: 55px 10px;
  }

  .be-home-agenda .fcal_cal_wrap {
    border-radius: 18px;
  }

  .be-home-agenda .fcal_slot_heading {
    font-size: 24px !important;
  }
}

/* =========================================
   ESTRUCTURA GENERAL — FOOTER ABAJO
========================================= */

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;

  display: flex;
  flex-direction: column;
}


/* Contenedor principal habitual de WordPress */

#page,
.site,
.site-container,
.wp-site-blocks {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}


/* El contenido debe ocupar el espacio disponible */

#page > main,
#page .site-main,
.site > main,
.site .site-main,
.wp-site-blocks > main {
  flex: 1 0 auto;
}


/* Footer siempre al final */

.be-footer {
  flex-shrink: 0;
  margin-top: auto !important;
}








.fct-checkout-modal-container {
  position: fixed !important;
  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  z-index: 999999 !important;
}


/* =========================================================
   PRESENTACIÓN HOME
   ========================================================= */

.be-home-presentacion {
  width: 100%;
  max-width: 100%;
  padding: 80px 20px;
  background: #fff;
  box-sizing: border-box;
}

.be-presentacion-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 45px;
  align-items: stretch;
  box-sizing: border-box;
}

.be-presentacion-box {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 45px;
  border-radius: 28px;
}

.be-presentacion-about {
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.07);
}

.be-presentacion-wellness {
  background: linear-gradient(135deg,#fff7e9,#e7fbfb);
  text-align: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.07);
}

.be-presentacion-label {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(1,191,191,.10);
  color: #01bfbf;
  font-size: 14px;
  font-weight: 700;
}

.be-presentacion-box h2 {
  margin: 25px 0 20px;
  font-family: "Crimson Pro",Georgia,serif;
  font-size: 3.2rem;
  line-height: 1.05;
  color: #18181b;
}

.be-presentacion-box h2 span {
  color: #01bfbf;
}

.be-presentacion-intro {
  margin: 0 0 18px;
  font-size: 1.2rem;
  line-height: 1.55;
  color: #3f3f46;
}

.be-presentacion-text {
  margin: 0 0 30px;
  font-size: 1rem;
  line-height: 1.65;
  color: #71717a;
}

.be-presentacion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 12px;
  background: #dd9933;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(221,153,51,.22);
}

.be-presentacion-btn span {
  font-size: 20px;
}

.be-presentacion-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffe4b5;
  color: #dd9933;
  font-size: 28px;
}

.be-presentacion-wellness h3 {
  margin: 0 0 18px;
  font-family: "Crimson Pro",Georgia,serif;
  font-size: 2.4rem;
  line-height: 1.05;
  color: #18181b;
}

.be-presentacion-wellness h3 span {
  color: #01bfbf;
}

.be-presentacion-wellness p {
  max-width: 350px;
  margin: 0 auto 25px;
  font-size: 1rem;
  line-height: 1.5;
  color: #71717a;
}

.be-presentacion-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.be-presentacion-tags span {
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(1,191,191,.10);
  color: #01bfbf;
  font-size: 12px;
  font-weight: 700;
}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 768px) {

  .be-home-presentacion {
    width: 100% !important;
    max-width: 100% !important;
    padding: 45px 15px !important;
    margin: 0 !important;
  }

  .be-presentacion-inner {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .be-presentacion-box {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 32px 24px !important;
  }

  .be-presentacion-about {
    text-align: center;
  }

  .be-presentacion-box h2 {
    font-size: 2.3rem !important;
    line-height: 1.08 !important;
  }

  .be-presentacion-intro {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
  }

  .be-presentacion-text {
    width: 100% !important;
    max-width: 100% !important;
    font-size: .95rem !important;
    line-height: 1.5 !important;
  }

  .be-presentacion-btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .be-presentacion-wellness h3 {
    font-size: 2rem !important;
  }

}

/* =====================================================
   MÓVILES MUY PEQUEÑOS
===================================================== */

@media (max-width: 400px) {

    .be-home-presentacion {
    padding-left: 12px !important;
    padding-right: 12px !important;
    }
    
    
    .be-presentacion-content {
    padding: 28px 20px !important;
    }
    
    
    .be-presentacion-content h2 {
    font-size: 2.45rem !important;
    }
    
    
    .be-presentacion-visual {
    padding: 18px 12px !important;
    }
    
    
    .be-presentacion-card {
    padding: 28px 18px !important;
    }

}

/* =========================================================
   FIX MOVIL - EVITAR DESPLAZAMIENTO HORIZONTAL
   ========================================================= */

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  img,
  video,
  iframe,
  svg {
    max-width: 100%;
  }

  .wp-block-columns {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .wp-block-column {
    min-width: 0;
    max-width: 100%;
  }

}

/* =========================================================
   CENTRADO DE SECCIONES EN MOVIL
   ========================================================= */

@media (max-width: 768px) {

  section {
    text-align: center;
  }

  section > div {
    margin-left: auto;
    margin-right: auto;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    text-align: center;
  }

  .wp-block-group,
  .wp-block-columns,
  .wp-block-column,
  .wp-block-cover,
  .wp-block-image {
    margin-left: auto;
    margin-right: auto;
  }

  .wp-block-image {
    text-align: center;
  }

  .wp-block-buttons {
    justify-content: center;
  }

  .wp-block-button {
    margin-left: auto;
    margin-right: auto;
  }

}

/* =========================================================
   FOOTER - CORRECCION MOVIL
   ========================================================= */

@media (max-width: 768px) {

  .be-footer {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .be-footer-content {
    width: 100%;
    max-width: 100%;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 45px 25px;
    margin: 0 auto;
  }

  .be-footer-col {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: center;
  }

  .be-footer-col h3 {
    text-align: center;
  }

  .be-footer-col p {
    text-align: center;
  }

  .be-footer-col ul {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .be-footer-col li {
    margin-bottom: 12px;
  }

  .be-footer-col a {
    overflow-wrap: break-word;
  }

  .be-footer-form {
    width: 100%;
    max-width: 330px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .be-footer-form input {
    width: 100%;
    max-width: 330px;
    min-width: 0;
  }

  .be-footer-form button {
    width: auto;
  }

  .be-footer-social {
    justify-content: center;
  }

  .be-footer-copy {
    width: 100%;
    max-width: 100%;
    padding: 20px 25px;
    text-align: center;
    overflow-wrap: break-word;
  }

}



/* =========================================================
   CTA - CORRECCION MOVIL
   ========================================================= */

@media (max-width: 768px) {

  .be-home-cta {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .be-home-cta > * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .be-home-cta-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .be-home-cta-card {
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

}


/* =========================================================
   IMAGEN CABECERO - CENTRADO EN MOVIL
   ========================================================= 

@media (max-width: 768px) {

  .be-hero-image,
  .be-hero-image-wrap,
  .be-hero-photo {
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .be-hero-image img,
  .be-hero-image-wrap img,
  .be-hero-photo img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}
*/


/* =========================================================
   IMAGEN HERO - CENTRADA EN MOVIL
   ========================================================= */

/* CENTRAR FOTO HERO EN MOVIL */

@media (max-width: 768px) {

  .be-hero-image-frame {
    width: fit-content !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }

  .be-hero-image-frame img {
    display: block !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
  }

}
.be-hero-image-frame img {
  border-radius: 18px;
}
