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

body{
    font-family:Arial, Helvetica, sans-serif;
    display:flex;
    flex-direction:column;
    align-items:center;
    background-color:#f39fd0;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,.03),
            rgba(255,255,255,.03) 2px,
            transparent 2px,
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0,0,0,.02),
            rgba(0,0,0,.02) 2px,
            transparent 2px,
            transparent 4px
        ),
        radial-gradient(#f87acc 1px, transparent 1px);

    background-size:5px 5px;
}

header{
    width:100%;
    padding:35px 0 20px;
    text-align:center;
}

header h1{
    font-size:38px;
    color:#880430;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body h3{
    font-size:28px;
    color:#880430;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align:center;
    width:100%;
}

.contenedor{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:35px;
    padding-bottom:40px;
}

.hero{
    width:100%;
    display:flex;
    justify-content:center;
    margin:15px 0 35px;
}

.hero img{
    width:360px;
    height:auto;

    border-radius:20px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.15);

    display:block;
}

.polaroid{
    width:330px;
    background:rgb(245, 225, 225);
    padding:12px 12px 22px;
    border-radius:8px;

    box-shadow:
        0 2px 4px rgba(0,0,0,.08),
        0 8px 20px rgba(0,0,0,.12);

    transform:rotate(-2deg);
    transition:.3s;
}

.polaroid:nth-child(even){
    transform:rotate(2deg);
}

.polaroid:hover{
    transform:rotate(0deg) scale(1.02);
}

.photo{
    width:100%;
    height:420px;
    overflow:hidden;
    position:relative;
    background:#ddd;
}

.photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.photo::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        rgba(255,255,255,0) 30%,
        rgba(255,255,255,.25) 32%,
        rgba(255,255,255,0) 35%
    );
    animation:shine 4s infinite;
    pointer-events:none;
}

.caption{
    margin-top:18px;
    color:#880430;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.caption h2{
    font-size:22px;
    margin-bottom:12px;
    text-align:center;
}

.caption p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:14px;
    text-align:left;
}

footer{
    width:100%;
    display:flex;
    justify-content:center;
    padding:25px 0 60px;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font-family:inherit;
}

button.siguiente{
    width:320px;
    height:58px;

    display:flex;
    align-items:center;

    background:#b32756;
    border-radius:30px;

    overflow:hidden;

    box-shadow:
        0 8px 18px rgba(0,0,0,.20),
        0 18px 35px rgba(179,39,86,.35);

    transition:transform .25s, box-shadow .25s;
}

button.siguiente:hover{
    transform:translateY(-2px);
    box-shadow:
        0 12px 24px rgba(0,0,0,.25),
        0 22px 45px rgba(179,39,86,.45);
}

button.siguiente:active{
    transform:scale(.97);
}

button.siguiente .circulo{
    width:58px;
    height:58px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#880430;
    border-radius:50%;
    flex-shrink:0;

    box-shadow:
        inset 0 2px 6px rgba(255,255,255,.15),
        0 4px 10px rgba(0,0,0,.30);
}

.icono-corazon{
    position:relative;
    width:16px;
    height:16px;

    background:#fff;
    transform:rotate(-45deg);

    transition:transform .25s;
}

.icono-corazon::before,
.icono-corazon::after{
    content:"";
    position:absolute;

    width:16px;
    height:16px;

    background:#fff;
    border-radius:50%;
}

.icono-corazon::before{
    top:-8px;
    left:0;
}

.icono-corazon::after{
    left:8px;
    top:0;
}

button.siguiente:active .icono-corazon{
    transform:rotate(-45deg) scale(1.2);
}

button.siguiente .button-text{
    flex:1;
    text-align:center;

    color:white;

    font-size:17px;
    font-weight:600;
    letter-spacing:.5px;
}

@keyframes shine{
    0%{
        transform:translateX(-100%) rotate(120deg);
    }

    20%,100%{
        transform:translateX(100%) rotate(120deg);
    }
}