* {
    box-sizing: border-box;
}

.body-fr9-masde13 {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #333;
    padding: 0;
}

.container-mas13-anos {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
}

.text-content-mas13-anos {
    max-width: 600px;
    text-align: center;
}

.text-container-title-mas13-anos {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}


.h1-mas13-anos {
    font-size: clamp(24px, 5vw, 32px);
    color: #1d0d65;
}

.highlight-mas13-anos {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: white;
    z-index: 1;
    padding: 0.3em 0.6em;
    transform: rotate(-5deg);
}

.highlight-mas13-anos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -0.5em;
    right: -0.5em;
    height: 100%;
    background-color: #3fe0ec;

    z-index: -1;
    border-radius: 0.3em;
}

.p-mas13-anos {
    margin-top: 15px;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5;
}

.btn-mas13-anos {
    margin-top: 20px;
    background-color: #ff2c9c;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-mas13-anos:hover {
    background-color: #e0268b;
}

.image-mas13-anos {
    max-width: 350px;
    flex-shrink: 0;
}

.img-mas13-anos {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Layout en escritorio */
@media (min-width: 768px) {
    .container-mas13-anos {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        /* CENTRADO VERTICAL */
        text-align: left;
    }

    .text-content-mas13-anos {
        text-align: left;
    }
}