/* Equipo */
.about-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 60px 0;
}

.about-section .section-title {
    text-align: center;
    margin-bottom: 0;
}

.about-section .section-heading {
    font-weight: 700;
    color: #4B2C24;
}

.about-section .section-heading.heading-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #E8A798;
    margin: 12px auto 0;
}

.about-section .section-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.about-image {
    width: 100%;
}

.me-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-content {
    width: 100%;
    text-align: center;
    padding: 0 10px;
}

.about-content h2 {
    color: #4B2C24;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

.col-text {
    font-weight: 700;
    font-size: 16px;
}

.about-content p {
    color: #4A332F;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-section .cta-button-wrapper {
    text-align: center;
}

@media (min-width: 768px) {
    .about-section .section-content {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .about-section .section-content--reverse {
        flex-direction: row-reverse;
    }

    .about-image {
        flex: 1;
    }

    .about-content {
        flex: 1;
        text-align: left;
    }

    .about-content h2 {
        font-size: 30px;
    }
}

@media (min-width: 1200px) {
    .about-content h2 {
        font-size: 33px;
    }
}
