/* =======================================
   TIPOGRAFÍA Y PALETA
======================================= */

body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background: #fff;
}

/* Marca Subsitio */
.brand-subsite {
    font-size: 18px;
    font-weight: 600;
    color: #C8A565; /* dorado */
}

/* Botón dorado */
.btn-gold {
    background: #C8A565;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}
.btn-gold:hover {
    background: #b18f4e;
    color: #fff;
}

/* Iconos dorados */
.icon-gold {
    font-size: 2.8rem;
    color: #C8A565;
}

/* Hero */
.hero-section {
    min-height: 85vh;
    position: relative;
}


/* Servicio Cards */
.service-card {
    border: none;
    border-radius: 12px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

/* CTA Final */
.cta-final {
    background: #111;
}

/* Footer */
footer img {
    filter: drop-shadow(0 0 5px rgba(200,165,101,0.4));
}


/* =======================
   Marca del Navbar
   (logo + texto en dos líneas)
=========================*/

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contenedor de los textos */
.brand-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Línea de arriba: marca principal */
.brand-mark {
    font-size: 16px;
    font-weight: 700;
    color: #a28550;
    margin: 0;
    padding: 0;
}

/* Línea de abajo: subsitio */
.brand-subsite {
    font-size: 14px;
    font-weight: 600;
    color: #C8A565; /* dorado Alma */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.socialmedia a {
    font-size: 2em;
    opacity: .5
}

.socialmedia a:hover {
    opacity: 1
}


/*precios*/

/* Tarjetas de precios */
.price-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: transform .2s ease, box-shadow .2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.price-card h4 {
    color: #111;
}

.price-item {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    border: 1px solid #eee;
}

/* Botón dorado (ya definido, pero lo repito por claridad) */
.btn-gold {
    background: #C8A565;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
}
.btn-gold:hover {
    background: #b18f4e;
    color: #fff;
}

/**/
.coverage-list .coverage-item {
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all .2s ease;
}

.coverage-list .coverage-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    border-color: #c8a565;
}

.coverage-list a {
    color: #C8A565;
    font-weight: 600;
    text-decoration: none;
}

.coverage-list a:hover {
    text-decoration: underline;
}

/**/

.accordion-button {
    font-weight: 600;
    padding: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: #C8A565;
    color: #fff;
}

.accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 10px;
}


/* === MEDIA QUERY PARA SMARTPHONE === */
@media (max-width: 576px) {

    .navbar-brand img{
        width: 50px;     /* más pequeño para móvil */
        height: auto;
    }

    .brand-mark {
        font-size: 12px; /* reducido ligeramente */
        line-height: 1.1;
    }

    .brand-subsite {
        font-size: 12px;  /* subsitio más compacto */
        letter-spacing: 0.3px;
    }

    .navbar-brand {
        gap: 6px; /* reduce separación entre logo y texto */
    }

    .brand-text-group {
        margin-top: 2px; /* alinea verticalmente */
    }
}

/* ================================
   BOTONES FLOTANTES CONTACTO
================================ */

.floating-contact{
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Botón base */
.btn-float{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    animation: floatPulse 2.5s infinite;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover */
.btn-float:hover{
    transform: scale(1.12);
    box-shadow: 0 12px 25px rgba(0,0,0,.35);
}

/* WhatsApp */
.btn-float.whatsapp{
    background: #C8A565;
    animation-delay: 0s;
}

/* Teléfono */
.btn-float.telefono{
    background: #111;
    animation-delay: 1.2s;
}

/* Animación */
@keyframes floatPulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.08);
    }
    100%{
        transform: scale(1);
    }
}

/* Responsive (más pequeño en móvil) */
@media(max-width:768px){
    .btn-float{
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

p a {
    color: #c8a565
}


/* BOTÓN FLOTANTE */
#spotify-float{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #1DB954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    animation: pulse 2s infinite;
}

#spotify-float img{
    width: 28px;
}

/* POPUP */
#spotify-popup{
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 320px;
    max-width: 90%;
    background: #121212;
    color: #fff;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    z-index: 9999;
}

/* HEADER */
.player-header{
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #1DB954;
    border-radius: 12px 12px 0 0;
}

.player-header button{
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* BODY */
.player-body{
    padding: 15px;
    text-align: center;
    z-index: 9999;
}

.controls{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.controls button{
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* ANIMACIÓN */
@keyframes pulse{
    0%{ transform: scale(1); }
    50%{ transform: scale(1.1); }
    100%{ transform: scale(1); }
}

.controls{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.controls button{
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: transform .2s ease, color .2s ease;
}

.controls button:hover{
    transform: scale(1.15);
    color: #1DB954;
}

/* Botón central tipo Spotify */
.play-main{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1DB954;
    color: #000;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-main:hover{
    background: #1ed760;
}


.nav-item{
    text-align: center!important
}
