.about {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    background: #1e293b;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ===== IMAGEN RESPONSIVE ===== */
.about-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img {
    width: 100%;
    max-width: 350px; /* tamaño en desktop */
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* ===== TEXTO ===== */
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #38bdf8;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ===== BOTÓN ===== */
.about-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #38bdf8;
    color: #0f172a;
    border-radius: 10px;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .about {
        padding: 20px;
        min-height: auto;
    }

    .about-container {
        grid-template-columns: 1fr; /* UNA SOLA COLUMNA */
        padding: 20px;
        gap: 20px;
        text-align: center;
    }

    .about-img img {
        max-width: 250px; /* más pequeña en móvil */
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-btn {
        width: auto;
    }

    .about-email {
        font-size: 14px;
        word-break: break-word;
    }
}

