* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('Montserrat-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url('Montserrat-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Safiro-Medium';
    src: url('Safiro-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.contenido {
    text-align: center;
}

.contenido h1 {
    font-family: 'Safiro-Medium', serif;
    color: white;
    font-size: 55px;
    font-weight: 100;
}

.contenido p {
    font-family: 'Montserrat-Light', sans-serif;
    color: white;
    font-size: 20px;
}

.logo-superior {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2;
    width: 170px;
}

.logo-superior img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.logo-personal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    width: 196px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-personal img {
    width: 100px;
    height: auto;
}
@media screen and (min-width: 768px) {
    .logo-superior {
        position: fixed;
        top: 70px;
        left: 50px;
        z-index: 2;
        width: 250px;
    }
    .logo-personal {
        position: fixed;
        bottom: 40px;
        right: 50px;
        z-index: 2;
        width: 196px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .contenido h1 {
        font-family: 'Safiro-Medium', serif;
        color: white;
        font-size: 70px;
        font-weight: 100;
    }

    .contenido p {
        font-family: 'Montserrat-Light', sans-serif;
        color: white;
        font-size: 30px;
    }
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text {
    font-family: 'Montserrat-Medium', sans-serif;
    color: white;
    font-size: 14px;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #050505;
}

.teatro-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('background.png'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: radial-gradient(
        circle at 50% 50%, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.85) 60%, 
        rgba(0, 0, 0, 0.98) 100%
    );
    pointer-events: none;
    transition: background 0.1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}