/* Importación de Fuentes e Iconos */
@import url(http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);
@import url('https://fonts.googleapis.com/css2?family=Marvel:ital,wght@1,700&family=Montserrat&family=Roboto&display=swap');

body {
    background-color: #FFF;
}

h1 {
    font-family: 'Roboto', serif;
}


/* Header general */
.header {
    padding: 5px 0;
    background-image: url('../images/bg2.png?v=<?=time()?>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 130px;
    z-index: 9999;
}
/* Asegura que el slider ocupe el ancho completo */
.camera_full_width {
    width: 100%;
    overflow: hidden;
}

#camera_wrap {
    width: 100%;
}

#camera_wrap .camera_src, #camera_wrap img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Mantiene la proporción de la imagen */
}

/* Ajustes para un buen comportamiento en dispositivos móviles */
@media (max-width: 768px) {
    #camera_wrap .camera_src, #camera_wrap img {
        object-fit: contain; /* Ajusta el tamaño para evitar recortes en pantallas pequeñas */
    }
}

/* Ajuste del logo */
.logo {
    max-height: 80px;
}

/* Navbar */
.navbar {
    background-color: transparent; /* Transparente para mostrar el fondo */
    background-image: url('../images/bg_halloween.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}

/* Links del menú en #menu_wrw_1 */
#menu_wrw_1 .nav-link {
    color: #fff;
    font-size: 16px;
    background-color: #9A2A2B;
    border-radius: 4px;
    padding: 18px 25px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto', serif;
    transition: background-color 0.3s, color 0.3s;
}

/* Iconos en los enlaces dentro de #menu_wrw_1 */
#menu_wrw_1 .nav-link i {
    color: #B0B0B0;
    transition: color 0.3s ease;
}

/* Hover en enlaces de #menu_wrw_1 */
#menu_wrw_1 .nav-link:hover {
    background-color: #454545;
    color: #fff;
}

#menu_wrw_1 .nav-link:hover i {
    color: #9A2A2B;
}

/* Estilo para el enlace activo en #menu_wrw_1 */
#menu_wrw_1 .nav-link.active, 
#menu_wrw_1 .nav-link.btn-wrw-active {
    background-color: #4D7E77; /* Color de fondo en estado activo */
    color: #fff;
    font-weight: bold;
}

#menu_wrw_1 .nav-link.active i, 
#menu_wrw_1 .nav-link.btn-wrw-active i {
    color: #9A2A2B;
}

/* Estilos móviles */
@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 10px 0;
        background-size: cover;
    }

    .logo {
        max-height: 50px;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .navbar-toggler {
        border-color: #fff;
    }

    #menu_wrw_1 .nav-link {
        padding: 20px 25px;
        margin: 25px 0;
    }

    .navbar-collapse {
        background-color: #343a40;
    }
}

#menu_wrw_1 .nav-link {
    background-color: rgba(154, 42, 43, 0.8);
    border: 1px solid #454545;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: -35px;
    border-radius: 4px;
    padding: 8px 12px;
    box-shadow: 0px 0px 2px 2px rgba(255,255,255,1);
}

/* Hover y Focus en enlaces de navegación */
#menu_wrw_1 .nav-link:hover,
#menu_wrw_1 .nav-link:focus {
    color: #fff;
    background-color: #454545;
    border-color: #454545;
}

#servicios {
    background-color: #f9f9f9;
}

#servicios h2 {
    font-size: 2.5em;
    color: #333;
}

#servicios .servicio {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

#servicios .servicio:hover {
    transform: translateY(-5px);
}

#servicios .servicio img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

#servicios h3 {
    margin-top: 15px;
    font-size: 1.8em;
    color: #007bff;
}

#servicios p {
    font-size: 1em;
    color: #555;
}


/* Botones primaryes */
.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #AA2C2E;
    border: 2px solid #AA2C2E;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #454545;
    border-color: #A6CD46;
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:focus {
    outline: 2px solid #A6CD46;
    outline-offset: 2px;
}

/* Texto primary */
.texto-primary {
    font-size: 18px;
    color: #555F84;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.texto-primary:hover {
    color: #29AAE2;
    transform: translateX(4px);
}

.texto-primary:focus {
    color: #A6CD46;
    outline: none;
    box-shadow: 0 0 4px #A6CD46;
}
/* Fondo y texto del footer */
.footer-bg {
    background-color: #9A2A2B;
    color: #FFFFFF;
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 20px 0 0;
    text-align: center;
}

/* Encabezados */
footer h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    position: relative;
    text-shadow: 2px 2px 2px #454545;
	background-color: rgb(154, 42, 43, 0.1);
	padding: 0.5rem;
}

/* Efecto de líneas aleatorias detrás del h4 */

/* Enlaces generales del footer */
footer a {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
	text-align: left;
}

footer a:hover {
    color: #CECECE;
	text-shadow: 2px 2px 2px #454545;
}

footer a:visited {
    color: #E8E8E8;
}

/* Botones sociales */


/* Derechos de autor y créditos */
footer p.copyright {
    color: #B2C931;
    font-size: 0.85em;
    padding: 5px 0;
    margin: 0;
}

footer p.design {
    color: #E0981B;
    font-size: 12px;
    font-weight: bold;
}

footer p.design a {
    color: #E0981B;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

footer p.design a:hover {
    color: #000;
    background-color: #B2C931;
    padding: 2px 4px;
}

/* Iconos */
footer i {
    color: #A6CD46;
    margin-right: 8px;
}


.social-btn {
    display: inline-block;
    color: #FFFFFF;
    margin: 5px 5px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-btn.facebook { background-color: #3b5998; }
.social-btn.youtube { background-color: #FF0000; }
.social-btn.instagram { background-color: #E4405F; }

.social-btn i {
    margin-right: 5px;
}

.social-btn:hover {
    opacity: 0.8;
}

.wrw2 {
    background-color: #454545;
    color: #FFFFFF;
    margin-top: 20px;
    text-align: center;
}

/* General container for services */
.servicios-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Each service item styling */
.servicio-item {
    flex: 1 1 calc(33.33% - 40px); /* 3 columns by default */
    max-width: calc(33.33% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 350px; /* Set a minimum height for uniformity */
}
/* Responsiveness for tablets */
@media (max-width: 992px) {
    .servicio-item {
        flex: 1 1 calc(50% - 40px); /* 2 columns on tablets */
        max-width: calc(50% - 40px);
    }
}

/* Responsiveness for mobile devices */
@media (max-width: 576px) {
    .servicio-item {
        flex: 1 1 100%; /* 1 column on mobile */
        max-width: 100%;
    }
}

/* Image styling */
.servicio-imagen {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}


.servicio-item h2 {
    color: #9A2A2B;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.servicio-item p {
    color: #333;
}

.servicio-titulo {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.servicio-descripcion {
    margin-top: auto; /* Pushes description to the bottom */
    font-size: 1rem;
}

h1, h2 {
    color: #9A2A2B; /* Color corporativo */
}

.lead {
    font-size: 1.2rem;
    color: #555;
}
#horario{
      background-color: #f9f9f9;
	padding: 2rem 5rem ;
}
/*img {
    max-height: 400px; /* Controla la altura de la imagen 
    object-fit: cover; /* Asegura que la imagen se vea bien 
}*/
