/* ===== CONFIGURACIÓN BASE ===== */
.pagina6 {
    padding: 80px 0;
    background: #f8fafc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

/* ===== CONTAINER ===== */
.pagina6 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ROW ===== */
.pagina6 .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

/* ===== CONTENIDO ===== */
.content-wrapper {
    padding: 40px 50px 40px 0;
    max-width: 580px;
    margin-left: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #2c7a7b;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: #e8f4f8;
    padding: 6px 20px;
    border-radius: 30px;
    border: 1px solid rgba(44, 122, 123, 0.15);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a3b5d;
    margin: 0 0 20px 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-title br {
    display: block;
}

.section-description {
    font-size: 1.05rem;
    color: #4a5a6e;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.section-btn {
    display: inline-block;
    background: #2c7a7b;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(44, 122, 123, 0.25);
    border: none;
    cursor: pointer;
}

.section-btn:hover {
    background: #1a5c5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 122, 123, 0.35);
    color: #ffffff;
    text-decoration: none;
}

/* ===== IMAGEN ===== */
.image-wrapper {
    padding: 20px 0 20px 20px;
    position: relative;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: rgba(44, 122, 123, 0.06);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(44, 122, 123, 0.04);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.section-image:hover {
    transform: scale(1.01);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .pagina6 {
        padding: 60px 0;
    }

    .content-wrapper {
        padding: 30px 20px 30px 0;
        max-width: 100%;
        margin: 0;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .image-wrapper {
        padding: 20px 0 20px 10px;
    }

    .image-wrapper::before {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }

    .image-wrapper::after {
        width: 70px;
        height: 70px;
        bottom: 5px;
        left: -10px;
    }
}

@media (max-width: 768px) {
    .pagina6 {
        padding: 50px 0;
    }

    .pagina6 .row {
        flex-direction: column-reverse;
    }

    .content-wrapper {
        padding: 30px 0 0 0;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .section-btn {
        padding: 12px 35px;
        font-size: 0.85rem;
    }

    .image-wrapper {
        padding: 0;
    }

    .image-wrapper::before,
    .image-wrapper::after {
        display: none;
    }

    .section-image {
        border-radius: 20px;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 5px 18px;
    }
}

@media (max-width: 576px) {
    .pagina6 {
        padding: 40px 0;
    }

    .content-wrapper {
        padding: 20px 0 0 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .section-btn {
        padding: 10px 30px;
        font-size: 0.8rem;
    }

    .section-image {
        border-radius: 16px;
    }
}

@media (max-width: 400px) {
    .pagina6 {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .section-btn {
        padding: 8px 25px;
        font-size: 0.75rem;
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 4px 14px;
    }
}