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

body{

font-family:Poppins,sans-serif;
background:#111;
color:white;

}

header{

height:100vh;

background:url("img/fondo.jpg") center center;
background-size:cover;
position:relative;

}

.overlay{

position:absolute;
inset:0;
background:rgba(0,0,0,.60);

}

.hero{

position:relative;
z-index:10;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

}

.logo{

width:260px;
margin-bottom:30px;

}

.hero h1{

font-family:Oswald;
font-size:70px;
letter-spacing:3px;

}

.hero h2{

font-family:Oswald;
font-weight:300;
letter-spacing:4px;

}

.hero p{

margin:25px;
font-size:22px;

}

.btn{

padding:18px 40px;
background:#4b6f33;
border-radius:40px;
color:white;
text-decoration:none;
font-weight:bold;

}

section{

padding:90px 10%;

}

h2{

font-family:Oswald;
font-size:42px;
text-align:center;
margin-bottom:50px;

}

.countdown{

display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;

}

.countdown div{

background:#222;
padding:25px;
border-radius:15px;
width:150px;

text-align:center;

}

.countdown span{

font-size:52px;
font-family:Oswald;

color:#7fc74b;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.card{

background:#1d1d1d;

padding:30px;

border-radius:15px;

transition:.3s;

}

.card h3 i {
    margin-right: 12px;
    color: #7fc74b;
}

.card:hover{

transform:translateY(-8px);

}

.mapa{

text-align:center;

}

.mapa img{

width:80%;
max-width:900px;

}

.cta{

background:#1b2d16;

text-align:center;

}

/* Estilos para el cartel animado */
.poster {
    background: #111;
    padding: 40px 10%;
    text-align: center;
}

.poster-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-poster {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.6);
    animation: floating 3.5s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

button{

padding:18px 50px;

margin-top:30px;

font-size:22px;

border:none;

border-radius:50px;

background:#777;

color:white;

}

footer{

padding:40px;

text-align:center;

background:#0b0b0b;

}

footer a{

color:#7fc74b;

text-decoration:none;

font-size:20px;

transition: .3s;

}

footer a:hover {
    color: white;
}

footer a i {
    margin-right: 8px;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #222;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #4b6f33;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover {
    color: #4b6f33;
}

.modal h2 {
    margin-bottom: 30px;
    color: #4b6f33;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ccc;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: #111;
    color: white;
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #4b6f33;
}

#registro-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

#registro-form .btn:hover {
    background: #5c8a3e;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
}

.checkbox-group a {
    color: #4b6f33;
    text-decoration: underline;
}

/* Media Queries para Responsividad */
@media (max-width: 768px) {
    header {
        height: auto;
        min-height: 100vh;
        padding: 40px 20px;
    }

    .hero {
        height: auto;
        justify-content: flex-start;
    }

    .logo {
        width: 180px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 18px;
        margin: 20px 0;
    }

    section {
        padding: 60px 5%;
    }

    h2 {
        font-size: 32px;
    }

    .countdown div {
        width: 120px;
        padding: 15px;
    }

    .countdown span {
        font-size: 38px;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .logo {
        width: 150px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown div {
        width: 45%;
    }
}
