/*GENERALES*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
/* Bootstrap CSS should be included via <link> in your HTML, not in your CSS file */
<link rel="stylesheet" href="style.css">


/* Importa Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Modo oscuro global y tipografía */
html, body {
    background: #181a1b !important;
    color: #fff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
    min-height: 100vh;
}

/* Navbar elegante y profesional */
.navbar {
    background: linear-gradient(90deg, #000000 80%, #0033ff 100%) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
}

.navbar .navbar-brand span {
    color: #fff;
    font-size: 1.3rem;
}

.navbar .nav-link {
    color: #fff !important;
    font-size: 1.08rem;
    transition: color 0.2s, background 0.2s;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    background: rgba(37,211,102,0.12);
    color: #3845ff !important;
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
}
/* Fondo aún más oscuro y contraste elegante */
html, body {
    background: #000000 !important; /* Más oscuro que #181a1b */
    color: #fff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
    min-height: 100vh;
}
/* Mapa más panorámico en agenda tu cita */
.mapa-panorama {
    aspect-ratio: 21 / 6;
    width: 100%;
    max-width: 100%;
    min-height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .navbar-nav {
        gap: 0 !important;
    }
    .navbar .nav-link {
        margin-bottom: 0.5rem;
    }
}
/* Footer social icons hover */
.footer a[aria-label]:hover {
    color: #25d366 !important;
    text-decoration: none;
}
/* Promo bar */
.promo-bar {
    background: #111314;
    color: #fff;
    text-align: center;
    padding: 0.5rem 0;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* Tarjetas y secciones */
.card {
    background: #23272b !important;
    color: #fff !important;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.card-title, .card-text {
    color: #fff !important;
}

.card a {
    color: #00e676;
}

.card a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Sección principal y títulos */
h1, h2, h3, h4, h5, h6, .lead, p, strong, label {
    color: #fff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
}

/* Botón WhatsApp */
.btn-success {
    background-color: #3845ff !important;
    border: none !important;
    color: #fff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
    transition: background 0.2s, color 0.2s;
}

.btn-success:hover,
.btn-success:focus {
    background-color: #2531b2 !important; /* Un azul más oscuro para el hover */
    color: #fff !important;
}



/* Mapas y iframes */
.ratio iframe {
    border-radius: 12px;
    border: 2px solid #23272b;
}

/* Links generales */
a {
    color: #00e676;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Ajustes para formularios y campos */
input, textarea, select {
    background: #23272b !important;
    color: #fff !important;
    border: 1px solid #444 !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
}

input::placeholder, textarea::placeholder {
    color: #bbb !important;
}

/* Scrollbar oscuro */
::-webkit-scrollbar {
    width: 10px;
    background: #23272b;
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
}

/* Otros ajustes responsivos */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    .footer {
        text-align: center;
    }
}
.footer {
    background: linear-gradient(90deg, #181a1b 80%, #3845ff 100%) !important; /* Gradiente azul elegante */
    color: #fff !important;
    border-top: 4px solid #25d366; /* Línea superior verde tipo "glow" */
    box-shadow: 0 -2px 24px 0 #25d36655; /* Sombra verde luminosa */
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s;
}

.footer a {
    color: #fff !important;
    transition: color 0.2s;
}

.footer a[aria-label]:hover,
.footer a:hover {
    color: #25d366 !important;
    text-shadow: 0 0 8px #25d36688;
}

.footer h5 {
    color: #25d366;
    letter-spacing: 1px;
}

.footer .bi {
    vertical-align: middle;
    font-size: 1.2em;
}
.promo-bar-move {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #000 100%);
    color: #fff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.6rem 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 16px #3845ff44;
}

.promo-bar-move span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: promo-move 12s linear infinite;
}

@keyframes promo-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px #25d36655;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #128c7e;
    box-shadow: 0 6px 24px #128c7e77;
    transform: scale(1.08);
    color: #fff !important;
}
/* Cards más pequeñas en móviles */
@media (max-width: 576px) {
  .card {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    padding: 0.5rem 0.5rem;
  }
  .card-img-top {
    height: 120px;
    object-fit: cover;
    border-radius: 0.75rem 0.75rem 0 0;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-text {
    font-size: 0.95rem;
  }
}
.navbar {
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
}