body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fd9c0a;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* ===== HEADER Y NAVEGACIÓN ===== */
.header-principal {
    background-color: #1b0d3b;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.header-principal h1 {
    color: #fff;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Navegación principal */
.navegacion-principal {
    margin-top: 10px;
}

.navegacion-principal ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.navegacion-principal li {
    display: inline-block;
}

.navegacion-principal a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.navegacion-principal a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-2px);
}

.navegacion-principal a.activo {
    background-color: #fff;
    color: #ce4606;
    border-color: #fff;
}

/* ===== CONTENIDO PRINCIPAL ===== */
.contenido-principal {
    min-height: calc(100vh - 200px);
    padding-bottom: 40px;
}

/* Subtítulos de secciones */
.subtitulo {
    background-color: rgb(97, 44, 14);
    color: white;
    padding: 15px;
    padding-left: 30px;
    font-weight: bold;
    font-size: 1.5em;
    margin: 20px 0;
}

.subtitulo h2 {
    font-size: 1.2em;
    margin: 0;
}

/* ===== GALERÍA DE PELÍCULAS ===== */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 30px;
}

.pelicula {
    display: block;
    transition: transform 0.3s ease;
}

.pelicula img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px #f3f3f3;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.pelicula img:hover {
    transform: scale(1.05);
}

.demon img {
height: 430px;
border-radius: 12px;

}
/* Botones de comprar */
.boton-comprar {
    background-color: rgba(8, 8, 8, 0.9);
    color: #fdfbfbc5;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px #7e0202;    
}

.boton-comprar:hover {
    transform: scale(1.05);
    background-color: #ce4606;
}

.boton-comprar p {
    color: rgb(255, 255, 255);
    margin: 0;
    font-weight: bold;
    font-size: 14px;    
}

.boton-comprar a{
text-decoration: none;
}

/* Info de próximos estrenos */
.info-estreno {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 8px #7e0202;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-estreno:hover {
    transform: scale(1.05);
    background-color: #ce4606;

}

.info-estreno p {
    margin: 0;
    font-weight: bold;
    font-size: 14px;
}

/* ===== PÁGINA SOBRE NOSOTROS ===== */
.seccion-sobre {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contenido-sobre {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.texto-sobre h3 {
    color: #ce4606;
    font-size: 1.4em;
    margin-bottom: 15px;
    margin-top: 25px;
}

.texto-sobre h3:first-child {
    margin-top: 0;
}

.texto-sobre p {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* ===== SERVICIOS ===== */
.seccion-servicios {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 30px 0;
}

.servicio {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.servicio:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.servicio h3 {
    color: #ce4606;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.servicio p {
    color: #555;
    font-size: 1em;
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer-principal {
    background-color: #1b0d3b;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    font-weight: bold;
}

.footer-principal p {
    margin: 5px 0;
}

.footer-principal p:first-child {
    font-size: 0.9em;
    opacity: 0.9;
}

.footer-principal p:last-child {
    font-size: 1em;
    color: #fff;
}

/* ===== PÁGINA DE CONTACTO ===== */
.seccion-contacto {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-contacto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px 0;
}

.info-contacto {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.info-contacto h3 {
    color: #ce4606;
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 25px;
}

.info-contacto h3:first-child {
    margin-top: 0;
}

.info-contacto p {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

iframe{
border-radius: 15px;
box-shadow: 5px 5px 10px rgb(238, 160, 44);
transition: transform 0.3s ease;
}

iframe:hover{
    transform: scale(1.03);
}
/* Formulario de contacto */
.formulario-contacto {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.formulario-contacto h3 {
    color: #ce4606;
    font-size: 1.4em;
    margin-bottom: 25px;
    text-align: center;
}

.form-contacto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.campo {
    display: flex;
    flex-direction: column;
}

.campo label {
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.campo input,
.campo select,
.campo textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.campo input:focus,
.campo select:focus,
.campo textarea:focus {
    outline: none;
    border-color: #ce4606;
    box-shadow: 0 0 5px rgba(206, 70, 6, 0.3);
}

.boton-enviar {
    background-color: #ce4606;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.boton-enviar:hover {
    background-color: #b93d05;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Sección ubicación */
.seccion-ubicacion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contenido-ubicacion {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 30px 0;
}

.info-ubicacion {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.info-ubicacion h3 {
    color: #ce4606;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.info-ubicacion h4 {
    color: #ce4606;
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-ubicacion p {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-ubicacion ul {
    color: #333;
    margin-left: 20px;
    margin-bottom: 15px;
}

.info-ubicacion li {
    margin-bottom: 8px;
}

.mapa-placeholder {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}

.mapa-placeholder p:first-child {
    font-size: 3em;
    margin-bottom: 15px;
}

.mapa-placeholder p {
    color: #333;
    margin-bottom: 10px;
}

.mapa-placeholder small {
    color: #666;
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .header-principal h1 {
        font-size: 2em;
    }
    
    .navegacion-principal ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .navegacion-principal a {
        display: block;
        margin: 5px 0;
    }
    
    .galeria {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 20px;
    }
    
    .contenido-sobre {
        padding: 25px;
        margin: 10px;
    }
    
    .grid-servicios {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Responsive para contacto */
    .grid-contacto {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contenido-ubicacion {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .header-principal h1 {
        font-size: 1.5em;
    }
    
    .subtitulo {
        padding: 10px 15px;
        font-size: 1.2em;
    }
    
    .galeria {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}















