@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&family=Montserrat:ital,wght@1,200;1,300&family=Gloock&display=swap');

body{
    background: #fff;
}

.about-hero {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-top: 25px;
    margin-bottom: 0; 
}

.about-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    background: rgba(0, 0, 0, 0.2);
}

.about-overlay h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 105px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-shadow: 0 4px 18px rgba(0,0,0,0.85);
    letter-spacing: 3px;
    margin: 0;
}

/* TEXTO  */
.about-text {
    max-width: 1100px;
    margin: 0 auto; 
    padding: 100px 40px; 
    background-color: #ffffff;
    box-shadow: 0 0 0 100vmax #ffffff;
    clip-path: inset(0 -100vmax); 
}

.about-block{
    margin-bottom: 100px; 
}

.about-title{
    font-family: 'Quicksand', sans-serif;
    font-size: 34px;
    font-weight: 500;
    color: #C99A2C;
    margin-bottom: 12px;
}

.gold-line{
    width: 100%;
    height: 2px;
    background-color: #C99A2C;
    margin-bottom: 35px;
}

.about-paragraph{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 16px;
    color: #222;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* FRASE FINAL */
.about-highlight{
    font-family: 'Gloock', serif;
    font-size: 18px;
    text-align: center;
    margin-top: 40px;
    color: #111;
}

.heart-zue {
    max-width: 1200px;
    margin: 40px auto 5px auto; 
    padding: 0 40px;
    text-align: center;
}

.heart-title{
    font-family: 'Quicksand', sans-serif;
    font-size: 34px;
    color: #C99A2C;
    font-weight: 500;
    margin-bottom: 12px;
}

.heart-cards{
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 70px;
}

/* CARD */
.heart-card{
    width: 260px;
    height: 260px;
    perspective: 1200px;
    cursor: pointer;
}

.heart-inner{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
    position: relative;
}

.heart-card.active .heart-inner{
    transform: rotateY(180deg);
}

.heart-front,
.heart-back{
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
}

.heart-front i{
    font-size: 80px;
    margin-bottom: 18px;
}

.heart-front h3{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
}

.heart-back{
    transform: rotateY(180deg);
    padding: 35px;
}

.heart-back p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    color: #111;
}

/* Tablets: hasta 768px */
@media (max-width: 768px) {
    .about-hero {
        height: 350px;
        margin-top: 35px;
    }

    .about-overlay {
        padding-top: 60px;
    }

    .about-overlay h1 {
        font-size: 70px;
        letter-spacing: 2px;
    }

    .about-text {
        padding: 80px 30px;
    }

    .about-title {
        font-size: 28px;
    }

    .gold-line {
        margin-bottom: 25px;
    }

    .about-paragraph {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .about-highlight {
        font-size: 16px;
        margin-top: 30px;
    }

    .heart-zue {
        padding: 0 30px;
    }

    .heart-title {
        font-size: 28px;
    }

    .heart-cards {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        margin-top: 40px;
    }

    .heart-card {
        width: 40vw;       /* 40% del ancho de la pantalla */
        height: 40vw;      /* mantiene círculo */
        max-width: 220px;  /* no se haga gigante */
        max-height: 220px;
    }

    .heart-back {
        padding: 15px;      /* menos padding */
    }

    .heart-back p {
        font-size: 11px;
        line-height: 1.5;
        overflow-wrap: break-word;
        text-align: center;
    }

    .heart-front i {
        font-size: 55px;
    }

    .heart-front h3 {
        font-size: 18px;
    }
}

/* M贸viles: hasta 480px */
@media (max-width: 480px) {
    .about-hero {
        height: 220px;
        margin-top: 45px;
    }

    .about-overlay {
        padding-top: 40px;
    }

    .about-overlay h1 {
        font-size: 40px;
        letter-spacing: 1px;
    }

    .about-text {
        padding: 60px 20px;
    }

    .about-title {
        font-size: 22px;
    }

    .gold-line {
        margin-bottom: 20px;
    }

    .about-paragraph {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .about-highlight {
        font-size: 14px;
        margin-top: 25px;
    }

    .heart-zue {
        padding: 0 20px;
    }

    .heart-title {
        font-size: 22px;
    }

.heart-cards {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        align-items: center;
    }

    .heart-card {
        width: 60vw;       /* 60% de la pantalla */
        height: 60vw;
        max-width: 160px;  /* limita tamaño máximo */
        max-height: 160px;
    }

    .heart-back {
        padding: 10px;
    }

    .heart-back p {
        font-size: 10px;
        line-height: 1.4;
        overflow-wrap: break-word;
        text-align: center;
    }

    .heart-front i {
        font-size: 45px;
    }

    .heart-front h3 {
        font-size: 16px;
    }
}