/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    color: #f6f6f6;
    background: #000000 ;

}

html {
    scroll-behavior: smooth;
}

.tittle_sub{
    color:#D4AF37 ;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;


}

.colorsito{

    color: #fdf8ed;


}
/* Navbar */
.navbar {
    background-color: #0a0a0a !important; /* Color oscuro como el ejemplo */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: normal;
    color: #fff !important;
}

.nav-link {
    color: #fff !important;
    font-size: 9;
    font-weight: 300;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #35CBC7 !important; /* Color turquesa del ejemplo */
}

/* Botones flotantes de contacto */
.contact-buttons-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.whatsapp-button, .contact-inf {
    display: flex;
    align-items: center;
    background-color: #25D366; /* WhatsApp color */
    color: white;
    padding: 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.whatsapp-button:hover, .contact-inf:hover {
    transform: scale(1.05);
}

.contact-inf {
    background-color: #35CBC7; /* Color turquesa */
}

.whatsapp-button img, .contact-inf img {
    margin-right: 8px;
}

/* Estilos para las secciones de servicios */
.service-section {
    padding: 60px 0;
}

.degradado {
    background: linear-gradient(
        to right, /* Define la dirección: de arriba hacia abajo */
        #e0bf00,   /* Oro Puro (más vibrante) */
        #fff188    /* Marrón muy oscuro, casi negro */
    ); 
    color: #0a0a0a; /* Texto blanco para asegurar el contraste */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Sombra sutil para darle profundidad */
    border-radius: 50px;

}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 90%;
    margin: 40px auto;
    border: 0;
    height: 1px;
    background-color: #D4AF37;
}

/* Contenedores de video y galería */
.video-container, .gallery-container {
    padding: 10px;
}

.video-container iframe {
    border-radius: 10px;
}

.gallery-container img {
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Media queries para móviles */
@media (max-width: 768px) {
    .contact-buttons-float {
        flex-direction: row;
        right: 10px;
        bottom: 10px;
        gap: 5px;
    }

    .whatsapp-button b, .contact-inf b {
        display: none;
    }
}


/* Estilos para el video de fondo completamente responsive */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-video-container video {
    /* Estas propiedades son las que hacen que el video sea responsive */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* **Esta es la clave.** Hace que el video cubra el contenedor manteniendo su proporción. */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    
    z-index: -1;
}

.video-overlay {
    position: relative;
    top: 0%; /* Ajusta este valor: 60% (más arriba), 70% (más abajo) */
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;


    z-index: 1;
}

.hero-content-container {
    position: relative;
    top:10%;
    z-index: 1;
    color: white;
}

.hero-content-container h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content-container .lead {
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

/* Media query para hacer el texto más pequeño en móviles */
@media (max-width: 768px) {
    .hero-content-container h1 {
        font-size: 2rem;
    }
    .hero-content-container .lead {
        font-size: 1rem;
    }
}

/* --- Estilos para la Transición del Navbar (Actualización) --- */

/* 1. ESTADO INICIAL (Transparente sobre el video) */
.navbar-transparent {
    background-color: transparent !important;
    transition: background-color 0.5s ease-in-out;
}

.navbar-transparent .nav-link,
.navbar-transparent .navbar-brand {
    color: white !important;
    /* Añadimos una sombra blanca para que el texto resalte sobre el video */
    text-shadow: 0 0 0px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.8); 
}

/* 2. ESTADO DESPUÉS DEL SCROLL (Sólida y Oscura) */
.navbar-scrolled {
    background-color: #020202 !important;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-brand {
    color: white !important;
    text-shadow: none; /* Quitamos la sombra cuando el fondo es sólido */
}

/* --- Estilos para el Footer --- */
.site-footer {
    background-color: #020202; /* Color oscuro para que contraste con la página */
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-size: 0.9em;
}

.site-footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.site-footer p {
    margin-bottom: 10px;
}

.site-footer .copyright-text {
    margin-top: 20px;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Estilos para el Contenedor del Mapa */
#map-container {
    width: 70%;
    height: 150px; /* Altura fija para el mapa, puedes ajustarla */
    background-color: #333;
    border-radius: 8px;
    overflow: hidden; /* Asegura que el contenido del mapa no se salga de los bordes redondeados */
}

/* --- Estilos para el Botón de la Cabecera (Hero) --- */

.btn-hero-dark {
    /* Fondo del botón: Negro */
    background-color: #ffffff !important;
    /* Borde del botón: Negro */
    border-color: #ffffff !important;
    /* Color del texto: Blanco */
    color: #000000 !important;
    /* Transición suave para el efecto hover */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-hero-dark:hover {
    /* Fondo del botón al pasar el ratón: Un gris oscuro para el efecto */
    background-color: #333333 !important;
    /* Borde del botón al pasar el ratón */
    border-color: #333333 !important;
    /* Opcional: Puedes subir un poco el botón al hacer hover para un mejor efecto */
        color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.btn-gold {
      background: linear-gradient(135deg, #b8860b, #ffd700); /* dorado oscuro → dorado claro */
      color: #000000;  /* texto en blanco */
      font-weight: 600;
      border: none;
      border-radius: 6px;
      padding: .6rem 1.2rem;
      transition: all 0.3s ease;
    }

    .btn-gold:hover {
      background: linear-gradient(135deg, #a0780a, #f5d76e);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
      color: #000000;
    }

    .btn-gold:active {
      transform: translateY(0);
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .color_back {
        color: #000000;
    }