*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff5f8;
    color:#333;
    overflow-x:hidden;
}

.hero{
    height:100vh;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(255,105,180,.35);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:800px;
    padding:20px;
}

.hero h1{
    font-size:4rem;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    line-height:1.8;
}

.hero button{
    margin-top:30px;
    border:none;
    padding:18px 40px;
    border-radius:50px;
    cursor:pointer;
    font-size:18px;
    background:white;
    color:#ff4f8b;
    font-weight:600;
}

.section{
    padding:100px 20px;
    text-align:center;
    max-width:1000px;
    margin:auto;
}

.section h2{
    font-size:3rem;
    margin-bottom:25px;
    color:#ff4f8b;
    font-family:'Playfair Display',serif;
}

.intro-text{
    font-size:1.2rem;
    line-height:2;
}

#contador{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:40px;
}

.box{
    background:white;
    width:180px;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.box span{
    font-size:3rem;
    color:#ff4f8b;
    font-weight:bold;
}

.memory{
    max-width:900px;
    margin:80px auto;
    padding:30px;
}

.memory img{
    width:100%;
    border-radius:25px;
    margin-bottom:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.memory p{
    font-size:1.1rem;
    line-height:2;
}

.carta{
    background:white;
    border-radius:30px;
}

.carta-box{
    text-align:left;
    line-height:2;
    max-width:850px;
    margin:auto;
    padding:40px;
}

.love-list{
    list-style:none;
    max-width:700px;
    margin:auto;
}

.love-list li{
    background:white;
    margin-bottom:15px;
    padding:20px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.special-love{
    background:#ff4f8b !important;
    color:white;
    font-weight:bold;
    font-size:1.2rem;
}

.final{
    background:black;
    color:white;
    text-align:center;
    padding:180px 20px;
}

.final h2{
    margin-bottom:50px;
    font-weight:300;
}

.final h1{
    margin-top:80px;
    color:#ff7bb3;
    font-size:4rem;
    font-family:'Playfair Display',serif;
}

@media(max-width:768px){

.hero h1{
    font-size:2.5rem;
}

.hero p{
    font-size:1rem;
}

.section h2{
    font-size:2rem;
}

.final h1{
    font-size:2.3rem;
}

}