body{
margin:0;
font-family:'Poppins', sans-serif;
background: linear-gradient(135deg,#fde2e4,#fad2e1,#fff1e6);
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
}

/* CONTENEDOR */
.container{
width:100%;
display:flex;
justify-content:center;
padding:20px;
}

/* TARJETA LIMPIA PREMIUM */
.card{
background:white;
padding:40px 25px;
border-radius:25px;
text-align:center;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
max-width:420px;
width:100%;
}

/* LOGO GRANDE Y PROPORCIONAL */
.logo{
width:100%;
max-width:360px;
height:auto;
margin:0 auto 25px;
display:block;
filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* TITULO */
.title{
font-family:'Great Vibes', cursive;
font-size:55px;
margin:0;
color:#c4002f;
}

/* SUBTITULO */
.subtitle{
font-size:20px;
margin-bottom:20px;
color:#c4002f;
}

/* FRASE */
.frase{
font-size:15px;
color:#666;
margin-bottom:25px;
}

/* BOTONES */
.buttons a{
display:block;
margin:10px 0;
padding:14px;
background:linear-gradient(45deg,#c4002f,#ff4d6d);
color:white;
text-decoration:none;
border-radius:12px;
font-weight:500;
transition:0.3s;
}

.buttons a:hover{
transform:scale(1.05);
}

/* CONTADOR */
.timer{
display:flex;
justify-content:center;
gap:10px;
margin-top:20px;
}

.time-box{
background:#fff5f7;
padding:12px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
min-width:60px;
}

.time-box span{
display:block;
font-size:22px;
font-weight:bold;
color:#c4002f;
}

.time-box small{
font-size:11px;
color:#777;
}

/* ================= FORMULARIO RSVP ================= */

.form{
width:100%;
display:flex;
flex-direction:column;
align-items:center;
}

/* INPUTS CENTRADOS */
.form input,
.form textarea{
width:90%;
max-width:320px;
padding:12px;
margin:10px auto;
display:block;
border-radius:12px;
border:1px solid #eee;
background:#fafafa;
font-size:14px;
box-sizing:border-box;
text-align:left;
}

/* EFECTO FOCUS PRO */
.form input:focus,
.form textarea:focus{
outline:none;
border:1px solid #c4002f;
box-shadow:0 0 10px rgba(196,0,47,0.2);
}

/* BOTÓN FORMULARIO */
.form button{
width:90%;
max-width:320px;
padding:14px;
margin-top:15px;
border:none;
border-radius:12px;
background:linear-gradient(45deg,#c4002f,#ff4d6d);
color:white;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.form button:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* 📱 RESPONSIVE REAL */
@media (max-width:480px){

.card{
padding:30px 20px;
}

.logo{
max-width:300px;
}

.title{
font-size:45px;
}

.subtitle{
font-size:18px;
}

.timer{
gap:6px;
}

.time-box{
min-width:55px;
padding:10px;
}

.time-box span{
font-size:18px;
}

}
