/* Fuentes personalizadas */
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/GOTHIC.TTF') format('truetype');
}
@font-face {
  font-family: 'Century Gothic Bold';
  src: url('../fonts/centurygothic_bold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: 'Century Gothic Italic';
  src: url('../fonts/GOTHICI.TTF') format('truetype');
  font-style: italic;
}
@font-face {
  font-family: 'Helvetica Neue LT Std';
  src: url('../fonts/Helvetica Neue LT Std 35 Thin.otf');
}
@font-face {
  font-family: 'Gothic Italic';
  src: url('../fonts/GOTHICBI.TTF');
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.ttf');
}

/* ============================= */
/* Paleta de Colores */
/* ============================= */

:root {
    --color-primary: #d59a35;
    --color-secondary: #3e4b1f;
    --color-terciary: #22100b;
    --color-verde: #809168;
    --color-text: #230904;
    --color-rosadito: #fcf4f0;
    --color-hover: #9b4e21;
}

::selection {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* ============================= */
/* Tipografía Global */
/* ============================= */

/* Títulos - Century Gothic Bold */
h1, h2, h3, h4, h5, h6,
.hero-title,
.about-title,
.service-title,
.categoria-title,
.section-title,
.title {
    font-family: 'Century Gothic Bold', 'Century Gothic', Arial, sans-serif !important;
    font-weight: bold;
}

/* Descripciones - Century Gothic Italic */
p, .description,
.about-text,
.service-text,
.service-text-card,
.hero-subtitle,
.text-description {
    font-family: 'Century Gothic Italic', 'Century Gothic', Arial, sans-serif !important;
    font-style: italic;
}

/* Contenedores de información de contacto */
.contacto-info-container {
    background-color: #c5993f;
    border-radius: 50px;
    padding: 1rem;
    flex-grow: 1;
}


.contacto-info-item {
    font-family: 'Century Gothic Italic', 'Century Gothic', Arial, sans-serif !important;
    font-style: italic;
    text-align: center;
    color: white;
}

.contacto-info-item h2,
.contacto-info-item h5 {
    font-family: 'Century Gothic Italic', 'Century Gothic', Arial, sans-serif !important;
    font-style: italic;
    text-align: center;
    color: white;
}

/* ============================= */
/* Media Queries para Grid Images */
/* ============================= */
@media (max-width: 999px) {
  .gridimg-desktop { display: none; }
  .gridimg-mobile { display: block; }
}
@media (min-width: 1000px) {
  .gridimg-desktop { display: block; }
  .gridimg-mobile { display: none; }
}
.gridimg-desktop .grid-wrapper {
  display: grid;
  grid-template-columns: 432px 690px;
  gap: 10px;
  max-width: calc(432px + 690px + 10px);
  margin: 0 auto;
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .gridimg-desktop .grid-wrapper {
    grid-template-columns: 400px 550px !important;
    max-width: calc(400px + 550px + 10px) !important;
    margin: 0 auto;
  }
  .btn-agendar { font-size: 0.85rem !important; }
}
@media (min-width: 980px) and (max-width: 1024px) {
  .gridimg-desktop .grid-wrapper {
    grid-template-columns: 350px 550px !important;
    max-width: calc(350px + 550px + 10px) !important;
    margin: 0 auto;
  }
  .btn-agendar { font-size: 0.8rem !important; }
}
@media (min-width: 768px) and (max-width: 980px) {
  .gridimg-desktop .grid-wrapper {
    grid-template-columns: 320px 480px !important;
    max-width: calc(320px + 480px + 10px) !important;
    margin: 0 auto;
  }
  .btn-agendar { font-size: 0.75rem !important; }
}

/* ============================= */
/* Media Queries Generales       */
/* ============================= */
@media (max-width: 992px) {
  .nav-item .nav-link { font-size: 0.85rem; }
  .hero-title { font-size: 1.8rem; }
  .btn-custom { font-size: 0.9rem; padding: 0.5rem 1.5rem; }
  .navbar-collapse { position: relative; }
  
    .img-somos {
        padding: 10px;
    }
    .img-somos-1, .img-somos-2 {
        width: 100% !important;
        height: 100% !important;
    }

}
@media (max-width: 768px) {
  .nav-item .nav-link { font-size: 0.8rem; }
  .hero-title { font-size: 1.5rem; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-custom { font-size: 0.85rem; padding: 0.5rem 1rem; }
  .form-section { flex-direction: column; height: auto; padding: 20px; }
  .form-container, .info-container { width: 100%; text-align: center; }
  .info-container { margin-top: 20px; }
  .opinion-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .nav-item .nav-link { font-size: 0.75rem; }
  .hero-title { font-size: 1.2rem; }
  .btn-custom { font-size: 0.8rem; padding: 0.4rem 1rem; }
  .opinion-lore { font-size: 14px; }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 34px;
    color: white;
}

.cuerpo-float {
    position: fixed;
    bottom: 85px;
    right: 20px;
    z-index: 5;
    width: 60px;
    height: 60px;
    background-color: #D59A35;
    border-radius: 50%;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cuerpo-float:hover {
    transform: scale(1.1);
}

.cuerpo-float i {
    font-size: 34px;
    color: #22100B;
}

/* ============================= */
/* Estilos Generales             */
/* ============================= */

.menu-surya {
    width: 100%;
    padding: 15px 0;
    background: white;
    justify-items: center;
}

.menu-surya.fixed {
    position: fixed;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* opcional, para efecto visual */
}

.nav-item .nav-link {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  gap: 2vw;
  font-size: 1rem;
  font-family: 'Century Gothic', sans-serif;
  justify-content: space-between;
}
.btn-agendar {
    font-family: 'Lato', sans-serif;
  background-color: rgb(206, 144, 34);
  color: white;
  border-radius: 50px;
  --bs-btn-font-size: 1rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 2rem;
}
.btn-agendar:hover {
  background-color: white;
  border: 2px solid #844F24;
  color: #844F24;
}

.btn-agendar-servicios {
    font-family: 'Lato', sans-serif;
  background-color: var(--color-terciary);
  color: white;
  border-radius: 50px;
  --bs-btn-font-size: 1rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 2rem;
}
.btn-agendar-servicios:hover {
  background-color: white;
  border: 2px solid #844F24;
  color: #844F24;
}

.icono-carrito:hover {
  cursor: pointer;
  scale: 1.1;
}

#carrito-contador {
  position: absolute; 
  top: 5px; 
  right: 5px;
  font-size: 0.5rem; 
  display: none;
}


/* ============================= */
/* Banner principal           */
/* ============================= */

.section-banner {
    width: 100%;
    height: 80vh;
    background: url('../img/banner/banner-principal.jpg') center/cover no-repeat;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 5%;
}

.btn-custom {
  background-color: rgb(206, 144, 34);
  color: white;
  border-radius: 50px;
  border: none;
}
.hero-title {
  color: white;
  font-size: clamp(32px, 4vw, 46px);
  font-family: 'Century Gothic', sans-serif;
}

.highlight { 
    font-size: clamp(40px, 6vw, 77px);
    font-family: 'Century Gothic', sans-serif;
    font-weight: bold;
}

/* ============================= */
/* Zona Somos           */
/* ============================= */

.section-somos {
    width: 100%;
    height: auto;
    background: var(--color-rosadito);
}

.about-title {
  font-size: clamp(28px, 3vw, 46px);
  color: var(--color-primary);
  font-weight: bold;
  font-family: 'Gothic Italic', sans-serif;
}

/* Responsive para título con logo en página de contacto */
@media (max-width: 768px) {
  .about-title.d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .Surya-logo {
    display: block;
    margin: 10px auto 0 auto;
    width: 100px;
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: clamp(20px, 4vw, 28px) !important;
  }
  
  .about-title.d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .Surya-logo {
    width: 80px;
    margin: 10px auto 0 auto;
  }
}

@media (max-width: 400px) {
  .about-title {
    font-size: 18px !important;
  }
  
  .Surya-logo {
    width: 140px ;
  }
}

.about-text {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--color-text);
  font-family: 'Helvetica Neue LT Std', sans-serif;
  margin-top: 5vh;
  max-width: 400px;
  justify-self: center;
}

/* ============================= */
/* Zona Servicios           */
/* ============================= */

.services-section {
    width: 100%;
    height: auto;
    background: url('../img/banner/fondo-servicios.jpg') center/cover no-repeat;
}

.service-title {
  font-size: clamp(28px, 3vw, 46px);
  font-family: 'Gothic Italic', sans-serif;
  font-weight: bold;
  color: var(--color-terciary);
  margin-bottom: 0;
}
.service-text {
  font-size: clamp(16px, 1.4vw, 20px);
  font-family: 'Helvetica Neue LT Std', sans-serif;
  color: var(--color-terciary);
  margin-top: 30px;
}
.service-text-card {
  font-size: clamp(16px, 1.4vw, 20px);
  font-family: 'Helvetica Neue LT Std', sans-serif;
  color: var(--color-text);
}

.service-categoria {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    z-index: 9;
    top: 20px;
    left: 20px;
}

.categoria-title {
    font-size: clamp(14px, 10px, 28px);
    font-family: 'Gothic Italic', sans-serif;
    font-weight: bold;
    color: var(--color-terciary);
    margin: 0;
    background: var(--color-primary);
    padding: 5px 10px 5px 45px;
    border-radius: 15px;
    position: absolute;
    z-index: 1;
}

.service-foto {
    width: 100%;
    height: auto;
}

.btn-more-info {
  background-color: transparent;
  border: 2px solid #434B26;
  color: #434B26;
  border-radius: 10px;
  text-decoration: none;
}

.btn-more-info:hover {
  background-color: white;
  border: 2px solid #ce9022;
  color: black;
}
.card {
  background-color: var(--color-rosadito);
  padding: 3vh 2vw;
  border-radius: 0;
  text-align: justify;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  box-shadow: 0px 0px 10px 0px black;
}

.icono-servicio {
    background: var(--color-rosadito);
    width: 50%;
    border-radius: 50%;
    padding: 2%;
    z-index: 2;
}

/* ============================= */
/* Zona mente, alma y cuerpo           */
/* ============================= */

.services-amc {
    background-image: url('../img/banner/fondo-servicio-amc.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.servicios-card-amc {
  position: relative;
  height: 300px; /* Ajusta según lo que necesites */
  overflow: hidden;
  margin: 5px 0;
}

.servicio-txt {
    font-family: 'Century Gothic', sans-serif;
    color: var(--color-terciary);
    font-style: italic;
}

.servicio-txt-link {
    font-family: 'Lato', sans-serif;
    color: #434b26;
    text-decoration: none;
    text-align: end;
}

.servicio-txt-link:hover {
    color: var(--color-verde);
}

.servicio-card-amc {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.servicio-img-amc {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.servicios-card-amc .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 16, 11, 0.8); /* #22100b con opacidad */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servicios-card-amc:hover .overlay {
  opacity: 1;
}

/* ============================= */
/* Zona opinion          */
/* ============================= */

.opinion-section {
    background-color: var(--color-primary);
}

.Comentarios-title {
  font-size: clamp(28px, 3vw, 46px);
  font-family: 'Gothic Italic', sans-serif;
  color: var(--color-terciary);
}

.opinion-title {
  font-size: clamp(14px, 1vw, 18px);
  font-family: 'Gothic Italic', sans-serif;
  color: var(--color-terciary);
  margin-top: 10px;
}
.opinion-text { color: var(--color-text); text-align: left; }
.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
  padding: 20px;
  position: relative;
  margin: auto;
}
.opinion {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.opinion-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.opinion-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.carousel-btn {
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.left { left: 20px; }
.right { right: 20px; }
.carousel-dots {
  margin-top: 10px;
  text-align: center;
}

.carousel-indicators button {
  width: 15px !important;
  height: 15px !important;
  border-radius: 50% !important;
  background-color: var(--color-terciary) !important;
}

.carousel-indicators .active {
  background-color: var(--color-primary) !important;
}

.opinion-lore {
  font-family: 'Helvetica Neue LT Std', sans-serif;
  font-size: 18px;
  color: var(--color-text);
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6.5em; /* Ajusta según el line-height si es necesario */
}
.footer {
  text-align: center;
  padding: 20px;
  background-color: #2d150d;
}
.subtitle { font-size: 14px; color: #c3925b; }
.menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 22px;
  font-family: 'Gothic Italic', sans-serif;
}
.social img { width: 30px; margin: 5px; }
.follow-btn {
  display: inline-block;
  color: #D59A35;
  padding: 5px 10px;
  font-size: 18px;
}
.logo-footer img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.icon-redes {
    color: #22100B;
    background: #D59A35;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    align-content: center;
    margin-left: 10px;
}

/* ============================= */
/* Nueva clase para el contenedor de Lorem Ipsum */
/* ============================= */
.lorem-container {
  width: 100%;
  max-width: 770px;
  height: auto;
  padding-right: 60px;
  overflow: hidden;
}

/* ============================= */
/* Sección de Formulario         */
/* ============================= */
.form-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--color-rosadito);
  height: auto;
  padding: 150px 20px; /* Padding vertical grande, horizontal controlado */
  max-width: 1200px; /* Ancho máximo del contenedor */
  margin: 0 auto; /* Centrar el contenedor */
  width: 100%; /* Ocupar todo el ancho disponible hasta el máximo */
}
.form-container {
  width: 50%;
  position: relative;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.info-container {
  width: 50%;
  padding: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 769px) {
  .info-container {
    order: -1;
    width: 100%;
    padding: 10px;
    text-align: center;
    margin-top: 0;
  }
  .form-container {
    width: 100%;
    padding: 10px;
  }
  .info-container h2 { font-size: 2rem; }
  .info-container p { 
    font-size: 0.9rem; 
    text-align: center !important;
  }
  .input-wrapper input { font-size: 14px; }
  .btn.btn-custom { font-size: 0.9rem; padding: 0.5rem 1rem; }
}

/* Media queries específicos para el contenedor form-section */
@media (max-width: 1024px) {
  .form-section {
    padding: 100px 15px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .form-section {
    padding: 50px 10px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .form-section {
    padding: 30px 5px;
  }
}

/* Alineación específica para la primera imagen con el título */
.form-container .imagen-container:first-child {
    margin-top: 0;
    align-self: flex-start;
}

/* Asegurar que el título esté al mismo nivel */
.info-container h2,
.info-container .form_tiltulo {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
}

.info-container .form_tilt {
    margin-top: 0;
}

/* Estilos para inputs con ícono */
.input-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}
.input-wrapper i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #5a3c2e;
  font-size: 1.1rem;
  width: 30px;
  text-align: center;
}
.input-wrapper input {
  width: 100%;
  padding-left: 35px;
  border: none;
  border-bottom: 1px solid #c3925b;
  background: transparent;
  color: #5a3c2e;
  font-size: 16px;
  outline: none;
}
.input-wrapper input::placeholder {
  color: #5a3c2e;
}
.form-control:focus {
    background-color: transparent !important;
    border-color: #c3925b !important;
    box-shadow: none !important;
}
.btn.btn-custom {
  background-color: transparent;
  border: 2px solid #844F24;
  color: #844F24;
  margin-top: 2rem;
  padding: 0.2rem 0.5rem;
  font-size: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Textos de la sección Info en el Formulario - Responsivos */
.form_tiltulo {
  color: #844F24;
  font-size: clamp(30px, 5vw, 77px);
  font-family: 'Century Gothic';
  font-weight: bold;
  font-style: italic;
  margin: 0;
  padding: 0;
}
.form_tilt {
  color: #844F24;
  font-style: italic;
  font-size: clamp(30px, 5vw, 77px);
  font-family: 'Century Gothic';
  margin: 0;
  padding: 0;
}
.form_text {
  color: black;
  font-size: clamp(16px, 2vw, 20px);
  font-family: 'Helvetica Neue LT Std';
  margin-bottom: 1rem;
  width: 100%;
  max-width: 100%;
}
.info-container p {
  color: black;
 
  max-width: 100%;
}

/* ============================= */
/* Grid de Imágenes (Desktop)    */
/* ============================= */
.gridimg-desktop .grid-wrapper {
  display: grid;
  grid-template-columns: 432px 690px;
  gap: 10px;
  max-width: calc(432px + 690px + 10px);
  margin: 0 auto;
}
.gridimg-desktop .grid-left {
  display: grid;
  grid-template-rows: repeat(3, 237.913px);
  gap: 10px;
}
.gridimg-desktop .grid-right {
  display: grid;
  grid-template-rows: repeat(2, 361.87px);
  gap: 10px;
}
.gridimg-desktop .grid-left-img,
.gridimg-desktop .grid-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ============================= */
/* Carousel de Imágenes (Mobile) */
/* ============================= */
.gridimg-mobile .carousel-inner img {
  border-radius: 20px;
}

/* ============================= */
/* Nueva Media Query para Navbar Collapse */
/* ============================= */
/* Se comenta esta sección para evitar interferir con la funcionalidad collapse de Bootstrap
@media (max-width: 1038px) {
  .navbar-expand-lg > .container-fluid .navbar-collapse {
    display: none !important;
  }
  .navbar-expand-lg > .container-fluid .navbar-toggler {
    display: block !important;
  }
}
@media (min-width: 1039px) {
  .navbar-expand-lg > .container-fluid .navbar-collapse {
    display: flex !important;
  }
  .navbar-expand-lg > .container-fluid .navbar-toggler {
    display: none !important;
  }
}
*/

/* ============================= */
/* Nueva Media Query para Formulario (<769px) */
/* ============================= */
@media (max-width: 769px) {
  .form-section {
    flex-direction: column;
    padding: 10px;
    gap: 5px;
  }
  .info-container {
    order: -1;
    width: 100%;
    padding: 10px;
    text-align: center;
    margin-top: 0;
  }
  .form-container {
    width: 100%;
    padding: 10px;
  }
  .info-container h2 { font-size: 2rem; }
  .info-container p { 
    font-size: 0.9rem; 
    text-align: center !important;
  }
  .input-wrapper input { font-size: 14px; }
  .btn.btn-custom { font-size: 0.9rem; padding: 0.5rem 1rem; }
}

/* ============================= */
/* Banner principal - internos          */
/* ============================= */

.banner-pages {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-pages {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 5%;
    align-items: flex-start;
}

.pages-text {
    color: white;
    font-family: 'Century Gothic', sans-serif;
    font-size: clamp(14px, 1vw, 20px);
    max-width: 500px;
}

.pages-link {
    color: #C5993F;
    font-family: 'Century Gothic', sans-serif;
    font-size: clamp(16px, 1.5vw, 24px);
}

.pages-active {
    color: #C5993F;
    font-family: 'Century Gothic', sans-serif;
    font-weight: bold;
    font-size: clamp(16px, 1.5vw, 24px);
}

/* ============================= */
/* Pagina Somos           */
/* ============================= */

.section-page-somos {
    width: 100%;
    height: auto;
    background: var(--color-rosadito);
}

.img-somos {
    display: flex;
    justify-content: center;
}

#img-somos-up {
    align-items: flex-end;
}

#img-somos-down {
    align-items: flex-start;
}

.img-somos-1, .img-somos-2 {
    width: auto;
    height: 80%;
}

.page-somos-titulo {
    font-family: 'Century Gothic', sans-serif;
    color: var(--color-text);
    font-weight: bold;
    font-size: clamp(24px, 4vw, 45px);
}
.page-somos-subtitulo {
    font-family: 'Century Gothic Italic', sans-serif;
    font-size: 20px;
    color: var(--color-text);
}
.page-somos-txt {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    color: var(--color-text);
    font-size: clamp(16px, 1vw, 24px);
    text-align: center;
}

.enfoques-marca {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5% 10%;
}

.titulo-marca {
    font-family: 'Century Gothic', sans-serif;
    color: #894e28;
    font-weight: bold;
    font-size: clamp(16px, 2vw, 24px);
    margin: 0;
    text-align: center;
}

.subtitulo-marca {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    color: black;
    font-size: clamp(12px, 1vw, 16px);
}

.icono-marca {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-primary) 0%);
    border-radius: 50%;
    padding: 15px;
    object-fit: contain;
}

.foto-persona {
    width: 200px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 10px auto;
    background: #f5f5f5;
}

.personas-surya {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.card-producto {
    /* background-color: #809168; */
    border-radius: 0;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px; /* Altura mínima fija para todas las tarjetas */
}

.card-producto img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: 250px; /* Altura fija para todas las imágenes */
}

.card-producto .row {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 !important;
    width: 100% !important;
}

.card-producto .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 4);
    min-height: calc(1.4em * 4); /* Altura fija para la descripción */
    margin-bottom: 15px;
}

.price-tag {
  background-color: #809168;
  color: white;
}

.card-title-producto {
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
  width: 100%;
  flex: 1;
}

/* Estilos para el contenedor de productos */
.producto {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 30px;
}

.producto .card-producto {
    flex: 1;
}

/* Asegurar que el botón siempre esté en la parte inferior */
.card-producto .btn {
    margin-top: auto;
}

.adn-section {
    padding: 80px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.adn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0.05;
    z-index: -1;
}

/* Título principal */
.main-title-container {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.main-title {
    font-size: clamp(24px, 4vw, 45px);
    font-weight: 800;
    color: var(--color-text);
    text-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.main-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary), var(--color-verde), var(--color-terciary));
    background-size: 400% 400%;
    border-radius: 15px;
    z-index: -1;
    animation: gradientShift 4s ease infinite;
    opacity: 0.1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.2); }
}

.main-subtitle {
    font-size: 1.2rem;
    color: var(--color-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Secciones */
.section-container {
    margin-bottom: 60px;
}

.section-header {
    margin-bottom: 40px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: left;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

/* Grid de tarjetas */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Tarjetas de valores */
.value-card {
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.5s;
}


.card-inner {
    position: relative;
    z-index: 2;
}

/* Contenedores de iconos */
.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.icon {
    width: 40px;
    height: 40px;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.value-card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

.value-card:hover .icon {
    transform: scale(1.1);
}

/* Colores específicos para cada valor */
.amor {
    background: var(--color-primary);
}

.confianza {
    background: var(--color-verde);
}

.servicio {
    background: var(--color-hover);
}

.alegria {
    background: #f4a261;
}

.unidad {
    background: var(--color-secondary);
}

.calidad {
    background: var(--color-terciary);
}

/* Títulos y descripciones de tarjetas */
.card-title-valor {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.card-description {
    font-size: 1rem;
    color: var(--color-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.value-card:hover .card-title-valor {
    color: var(--color-terciary);
}

.value-card:hover .card-description {
    color: var(--color-text);
}

/* Animaciones de entrada */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="400"] { animation-delay: 0.4s; }
[data-delay="500"] { animation-delay: 0.5s; }
[data-delay="600"] { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .adn-section {
        padding: 60px 15px;
    }
    
    .main-title-container {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-line {
        margin: 0 auto;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .icon-container {
        width: 70px;
        height: 70px;
    }
    
    .icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
      .section-title {
        font-size: 1.8rem;
    }
    
    .card-title-valor {
        font-size: 1.5rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ============================= */
/* Pagina reserva           */
/* ============================= */

.card-clases {
    border-radius: 0;
    text-align: center;
    border: 2px solid var(--color-primary);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%; /* Asegura que la card llene su contenedor */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-producto img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.card-title-clase {
  font-weight: bold;
}

.descripcion_clase {
  padding-bottom: 20px;
}

.clase-txt {
  text-align: left;
}

/* ============================= */
/* Botón Agregar al Carrito */
/* ============================= */

.btn-custom-cart {
    background-color: #cc9425;
    border-color: #cc9425;
    color: white;
}

.btn-custom-cart:hover {
    background-color: #b8851f;
    border-color: #b8851f;
    color: white;
}

.btn-custom-cart:focus, .btn-custom-cart:active {
    background-color: #a37619;
    border-color: #a37619;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(204, 148, 37, 0.25);
}

/* ============================= */
/* Banner Flotante */
/* ============================= */

.banner-flotante {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 500px;
    height: 180px;
    z-index: 1000;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: slideInLeft 0.5s ease-out;
    border: 2px solid #cc9425;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-flotante:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.banner-flotante img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-close-banner {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1001;
    transition: all 0.3s ease;
}

.btn-close-banner:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.banner-flotante.slide-out {
    animation: slideOutLeft 0.5s ease-in forwards;
}

/* Responsive para dispositivos móviles */
@media (max-width: 768px) {
    .banner-flotante {
        width: 280px;
        height: 100px;
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .banner-flotante {
        width: 250px;
        height: 90px;
        bottom: 10px;
        left: 10px;
    }
}

/* ============================= */
/* Cards de Clases Reservas (altura uniforme) */
/* ============================= */

.card-clases-reservas {
    border-radius: 0;
    text-align: center;
    border: 2px solid var(--color-primary);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%; /* Asegura que la card llene su contenedor */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-clases-reservas img {
    height: 200px; /* Altura fija para todas las imágenes */
    object-fit: cover; /* Mantiene proporción y recorta si es necesario */
    object-position: center;
    width: 100%;
}

.card-title-clase-reservas {
    font-weight: bold;
    min-height: 3rem; /* Altura mínima para títulos */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.card-title-clase-reservas h5 {
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.descripcion-clase-reservas {
    padding: 10px 20px 20px;
    flex: 1; /* Ocupa el espacio disponible */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.descripcion-clase-reservas p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
    text-align: justify;
}

.card-clases-reservas .py-2 {
    margin-top: auto; /* Empuja el botón hacia abajo */
    padding: 1rem;
}

/* Contenedor de las cards para altura uniforme en filas */
.producto {
    display: flex;
    height: 100%;
}

.producto .card-clases-reservas {
    width: 100%;
}

/* ============================= */
/* Imagen de transformación con sombra responsive */
/* ============================= */

.img-transformacion {
    width: 100%;
    max-width: 400px;
    height: auto;
    box-shadow: -70px -58px 0px 17px rgba(213, 154, 53, 0.44);
    -webkit-box-shadow: -70px -58px 0px 17px rgba(213, 154, 53, 0.44);
    -moz-box-shadow: -70px -58px 0px 17px rgba(213, 154, 53, 0.44);
    transition: box-shadow 0.3s ease;
}

/* Media queries para ajustar la sombra en diferentes tamaños */
@media (max-width: 992px) {
    .img-transformacion {
        max-width: 350px;
        box-shadow: -50px -40px 0px 12px rgba(213, 154, 53, 0.44);
        -webkit-box-shadow: -50px -40px 0px 12px rgba(213, 154, 53, 0.44);
        -moz-box-shadow: -50px -40px 0px 12px rgba(213, 154, 53, 0.44);
    }
}

@media (max-width: 768px) {
    .img-transformacion {
        max-width: 300px;
        box-shadow: -35px -30px 0px 10px rgba(213, 154, 53, 0.44);
        -webkit-box-shadow: -35px -30px 0px 10px rgba(213, 154, 53, 0.44);
        -moz-box-shadow: -35px -30px 0px 10px rgba(213, 154, 53, 0.44);
    }
}

@media (max-width: 576px) {
    .img-transformacion {
        max-width: 250px;
        box-shadow: -25px -20px 0px 8px rgba(213, 154, 53, 0.44);
        -webkit-box-shadow: -25px -20px 0px 8px rgba(213, 154, 53, 0.44);
        -moz-box-shadow: -25px -20px 0px 8px rgba(213, 154, 53, 0.44);
    }
}

@media (max-width: 400px) {
    .img-transformacion {
        max-width: 200px;
        box-shadow: -18px -15px 0px 6px rgba(213, 154, 53, 0.44);
        -webkit-box-shadow: -18px -15px 0px 6px rgba(213, 154, 53, 0.44);
        -moz-box-shadow: -18px -15px 0px 6px rgba(213, 154, 53, 0.44);
    }
}

/* Contenedor y botón para imagen de transformación */
.imagen-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.btn-container-imagen {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.btn-imagen-transformacion {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'Century Gothic Bold', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(213, 154, 53, 0.4);
    min-width: auto;
}

.btn-imagen-transformacion:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 154, 53, 0.5);
}

.btn-imagen-transformacion:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(213, 154, 53, 0.4);
}

/* Responsive para el botón de imagen */
@media (max-width: 768px) {
    .btn-container-imagen {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .btn-imagen-transformacion {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .btn-container-imagen {
        position: static;
        transform: none;
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .imagen-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .caja-boton-texto {
        margin-bottom: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .img-transformacion {
        order: 2;
        width: 100%;
        max-width: 100%;
    }
}

/* Caja blanca para botón y texto */
.caja-boton-texto {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid var(--color-primary);
    animation: respirar 3s ease-in-out infinite;
    transition: all 0.3s ease;
    font-family: 'Century Gothic Italic', sans-serif;
}

/* Animación de respirar para la caja */
@keyframes respirar {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(213, 154, 53, 0.4);
    }
}

/* Pausar animación al hacer hover */
.caja-boton-texto:hover {
    animation-play-state: paused;
    transform: scale(1.02);
}

/* Responsive para la caja */
@media (max-width: 768px) {
    .caja-boton-texto {
        padding: 12px 15px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .texto-camino {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .caja-boton-texto {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .texto-camino {
        font-size: 0.75rem;
    }
}

/* Quitar sombra específicamente a la imagen en info-container */
.info-container .img-transformacion {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Asegurar que la imagen pequeña no tenga sombra con mayor especificidad */
.info-container .img-pequena {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Imagen pequeña - ancho completo */
.img-pequena {
    max-width: 100% !important;
    width: 100% !important;
}

/* Contenedor de la imagen pequeña */
.info-container .imagen-container {
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .img-pequena {
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .img-pequena {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ============================= */
/* Estilos para información de contacto */
/* ============================= */
.info-contacto-container {
    font-family: 'Century Gothic Italic', 'Century Gothic', Arial, sans-serif !important;
    font-style: italic;
    text-align: center;
}

.contacto-info-item {
    font-family: 'Century Gothic Italic', 'Century Gothic', Arial, sans-serif !important;
    font-style: italic;
    text-align: center;
    color: white;
}

.contacto-info-item h2,
.contacto-info-item h5 {
    font-family: 'Century Gothic Italic', 'Century Gothic', Arial, sans-serif !important;
    font-style: italic;
    text-align: center;
    color: white;
}

.sidebar.citas-sidebar {
  width:230px;
  background: var(--color-secondary, #3F3E2A);
  color:#fff;
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  min-height: 100vh;
  transition: left 0.25s;
  position: relative;
  z-index: 1;
}
.sidebar.citas-sidebar .sidebar-toggle {
  display: none;
  background: #fff;
  border: none;
  color: #000;
  font-size: 2rem;
  margin: 0.5em 0 0 1em;
  align-self: flex-start;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  transition: background 0.18s, color 0.18s;
}
.sidebar.citas-sidebar .sidebar-toggle:active, .sidebar.citas-sidebar .sidebar-toggle:focus {
  background: #000;
  color: #fff;
}
.sidebar.citas-sidebar .sidebar-toggle-icon {
  font-size: 2rem;
  color: #000;
}
@media (max-width: 991px) {
  .sidebar.citas-sidebar {
    position: fixed;
    left: -230px;
    top: 0;
    height: 100vh;
    width: 230px;
    box-shadow: 2px 0 12px rgba(0,0,0,0.08);
    transition: left 0.25s;
  }
  .sidebar.citas-sidebar.open {
    left: 0;
  }
  .sidebar.citas-sidebar .sidebar-toggle {
    display: block;
    position: absolute;
    left: 100%;
    top: 10px;
    z-index: 101;
  }
  .my-0.d-flex {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .sidebar.citas-sidebar {
    width: 90vw;
    left: -90vw;
  }
  .sidebar.citas-sidebar.open {
    left: 0;
  }
}

/* ============================= */
/* Botones primarios Surya       */
/* ============================= */
.btn.btn-primary {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(213,154,53,0.10);
  transition: background 0.18s, border 0.18s, color 0.18s;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background-color: var(--color-hover) !important;
  border-color: var(--color-hover) !important;
  color: #fff !important;
}
.btn.btn-outline-primary {
  color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  background: transparent !important;
  font-weight: 600;
  transition: background 0.18s, border 0.18s, color 0.18s;
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
  background: var(--color-primary) !important;
  color: #fff !important;
  border-color: var(--color-hover) !important;
}

/* Sidebar toggle botón hamburguesa */
.sidebar-toggle {
  position: fixed;
  left: 20px;
  bottom: 20px;
  top: auto;
  z-index: 1050;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.18s, border 0.18s;
}
.sidebar-toggle-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
}

/* Logo sidebar responsive */
.citas-sidebar .text-center.my-3 img {
  max-width: 140px;
  height: auto;
}
@media (max-width: 767px) {
  .citas-sidebar .text-center.my-3 img {
    max-width: 120px;
  }
}

/* ============================= */
/* Días disponibles en el calendario de reservas (más visibles y sin duplicidad de clases) */
/* ============================= */
.cal-dia {
    background-color: rgb(206, 144, 34) !important ;
    color: #fff !important;
    font-weight: bold;
    border: 2px solid #b8860b ;
    cursor: pointer;
    transition: box-shadow 0.2s, filter 0.2s;
}
.cal-dia:hover, .cal-dia.selected {
    background-color: #b8860b !important;
    color: #fff !important;
    filter: brightness(1.1);
}

/* Efecto solo para el contenedor del número de teléfono */
.contacto-info-container-numero {
  transition: transform 0.25s cubic-bezier(.4,2,.6,1);
}
.contacto-info-container-numero:hover {
  transform: scale(1.03);
}
