body {
    background-color: #f9f9f9;
    color: #333;
}

/* ######### HOME ########## */

.profile-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

.profile-img img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 100px;
}

.btn-reservar {
    background-color: #007BFF;
    border: none;
}

.btn-reservar:hover {
    background-color: #0056b3;
}

.hour {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 0;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hour:hover {
    background-color: #0056b3;
}

.date-label {
    font-weight: 600;
}

.d-none {
    display: none !important;
}

@media screen and (max-width: 576px) {

    .btn {
        font-size: 0.7rem;
        padding: 0.3rem;
    }
}



/* ######### PERFIL NEGOCIO CUSTOM ########## */

/* GENERAL */
:root {
    --fondo: #ffffff;
    --fondo2: #f2fbfc;
    --principal: #007bff;
    --secundario: #c2e3ff;
    --font1: #fff;
    --font2: #000;
}

/* === PELUQUERÍA === */
.theme-peluqueria {
    --fondo: #ffffff;
    --fondo2: #fafaec;
    --principal: goldenrod;
    --secundario: rgba(247, 245, 133, 0.9);
    --font1: #fff;
    --font2: #000;
}

/* === CANCHA DE FÚTBOL === */
.theme-cancha {
    --fondo: #ffffff;
    --fondo2: #ecfaec;
    --principal: #2e7d32;
    --secundario: #66bb6a;
    --font1: #fff;
    --font2: #000;
}

/* === ESTETICA === */
.theme-estetica {
    --fondo: #ffffff;
    --fondo2: #ecfaec;
    --principal: #500631;
    --secundario: #cc6aa3;
    --font1: #fff;
    --font2: #000;
}

/* === PADEL === */
.theme-padel {
    --fondo: #ffffff;
    --fondo2: #ecfaec;
    --principal: #281388;
    --secundario: #5d4ac5;
    --font1: #fff;
    --font2: #000;
}

/* === MANICURA === */
.theme-manicura {
    --fondo: #ffffff;
    --fondo2: #ecfaec;
    --principal: #851c85;
    --secundario: #cc6aa3;
    --font1: #fff;
    --font2: #460d43;
}


/* /////////  PERFIL ////////////  */

body {
    background-color: var(--fondo);
    color: var(--font2);
}


h1, h2, h3, h4 {
    color: var(--principal);
    font-size: 2.5rem;
}

h5, h6 {
    color: var(--principal);
}

@media (max-width: 567px) {
    body {
        font-size: 0.9rem;
    }
    
    h1, h2, h3, h4 {
        font-size: 2rem;
    }


}

.text-custom {
    color: var(--principal);
}

.color-principal {
    color: var(--principal);
}

.color-secundario {
    color: var(--secundario);
}

.bg-custom{
    background-color: var(--fondo2);
}

/* Botones(filtros)*/
.btn-custom {
    background-color: var(--principal);
    color:var(--font1);
}

.btn-custom:hover {
    background-color: var(--secundario);
    color:var(--font1);
}

.btn-outline-custom {
    border-color: var(--principal);
    color:var(--principal);
}

.btn-outline-custom:hover {
    background-color: var(--principal);
    color:var(--font1);
}

.btn-outline-custom.active {
    background-color: var(--secundario);
    color:var(--font1);
}

section {
    padding: 2rem 0;
}

.small2 {
    font-size: 0.7rem;
}

/* SECCIÓN TITULOS */
.section-title {
    font-weight: 700;
    color: var(--principal);
    text-align: center;
    font-size: 1rem;
}

.navbar {
    background-color: var(--principal);
    color: var(--font1);
}

.navbar-brand {
    color: var(--font1);
}

.nav-link{
    color: var(--font1);
}

.navbar-brand {
    color: var(--font1);
    font-size: 1rem;
}

/* HERO */
.perfil-hero {
    height: 65vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    justify-content: center;
    display: flex;
}

.perfil-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.perfil-hero-content {
    position: absolute;
    bottom: 2rem;
    z-index: 3;
    color: white;
    display: block;
    text-align: center;
}

.perfil-logo {
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

@media (max-width: 567px) {
    .perfil-hero {
        height: 25vh;
    }
    .perfil-hero-content h1{
        font-size: 2.5rem;
    }
    .perfil-logo {
        max-width: 70px;
        height: auto;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid white;
    }

}

/* SERVICIOS CARD PERFIL */

/* Botón acordeón limpio */
.accordion-button-clean {
  background: transparent;
  box-shadow: none;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  padding: 0.75rem 1rem;
}

/* Quitar flecha */
.accordion-button-clean::after {
  display: none;
}

/* Quitar fondo al estar abierto */
.accordion-button-clean:not(.collapsed) {
  background: transparent;
  color: inherit;
}

.servicio-card-perfil {
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.servicio-card-perfil:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

/* Imagen arriba */
.servicio-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f5;
}

.servicio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto compacto mobile */
.servicio-card-perfil h6 {
  font-size: 0.95rem;
}

.servicio-card-perfil .card-body {
  flex-grow: 1;
}




/* GALERIA */
.gallery-img {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: 180px;
}

/* REDES*/

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    height: 110px;
    transition: all 0.3s ease;
}

.social-card i {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Colores por red */
.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook {
    background-color: #1877f2;
}

.twitter {
    background-color: #14171a;
}

.whatsapp {
    background-color: #25d366;
}

@media (max-width: 576px) {
    .social-card {
        height: 90px;
        font-size: 0.9rem;
    }
}

/* ////////// RESERVA ///////////// */
#navegador-dias h5 {
    font-size: 1.5rem;
}

.day-scroller {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 5px;
  scroll-snap-type: x mandatory;
}

.day-scroller::-webkit-scrollbar {
  display: none;
}

.day-item {
  flex: 0 0 auto;
  width: 70px;
  border-radius: 12px;
  background: #f8f9fa;
  text-align: center;
  padding: 8px 6px;
  cursor: pointer;
  scroll-snap-align: start;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.day-item:hover {
  background: #eef3ff;
}

.day-item.active {
  background: var(--principal);
  color: #fff;
  border-color: var(--principal);
}

.day-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.day-number {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.day-month {
  font-size: 0.7rem;
  text-transform: uppercase;
}

.cont-elegir {
    background-color: var(--principal);
    padding: 0.3rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    #navegador-dias h5 {
        font-size: 0.9rem;
    }
}


/* Horarios chip */
.turno-chip {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #dee2e6;
  background-color: #fff;
  color: #212529;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.turno-chip:hover {
  background-color: var(--secundario);
  color: #fff;
  border-color: var(--secundario);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
    .turno-chip {
        padding: 15px 30px;
        border-radius: 999px;
        font-weight: 500;
        font-size: 1.1rem;
        }

}

/* ////////  SERVICIOS CARD PERFIL//////////// */

.servicio-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
    height: auto;
}

.servicio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.12);
}

.servicio-img-reserva {
    height: 50%;
    max-height: 200px;
    overflow: hidden;
}

.servicio-img-reserva img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cuerpo */
.servicio-card .card-body {
    flex: 1;
}



/* /////////  CHECKOUT /////////  */

#custom-peluqueria .alert {
    background-color: var(--secundario);
    border: var(--principal);
    color: var(--font2);
}
