.altea-section {
    padding: 2rem;
    background: linear-gradient(to bottom, #191a1b, #161616);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.altea-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.altea-section.visible .altea-container {
    opacity: 1;
    transform: translateY(0);
}

.altea-container h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.altea-container h2::after {
    content: "como oficio";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #7bf70f, #eae200, #4cec07);
    border-radius: 4px;
    transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.altea-section.visible h2::after {
    width: 70%;
}

.altea-container p {
    color: #f3eaea;
    font-size: 1.3rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .altea-section {
        padding: 3rem;
    }
    .altea-container h2 {
        font-size: 2rem;
    }
    .altea-container p {
        font-size: 1.35rem;
    }
}