body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero iframe {
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-weight: 900;
    letter-spacing: 5px;
    color: #ff0033;
    text-shadow: 0 0 20px #ff0033;
}

.slogan {
    font-size: 1.3rem;
    color: #fff;
}

.section-title {
    color: #ff0033;
    font-weight: 800;
    margin-bottom: 20px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacto {
    background: #111;
}

.form-container {
    max-width: 800px;
    margin: auto;
    border: 2px solid #ff0033;
    box-shadow: 0 0 20px #ff0033;
    padding: 10px;
}

footer {
    background: #000;
    border-top: 1px solid #ff0033;
}