/* ============================================
   SOBRE MÍ - ESTILOS
   ============================================ */

/* HERO */
.hero-sobremi {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 150px 20px;
}

.hero-sobremi h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-sobremi .lead {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* BIOGRAFÍA */
.biografia {
    min-height: 60vh;
    background: #f5f2eb;
    color: #2c2c2c;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-destacado {
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: #5f7f7a;
    margin-bottom: 30px;
    border-left: 3px solid #5f7f7a;
    padding-left: 20px;
}

.biografia p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.texto-firma {
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.lugar {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-top: 30px;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #2c2c2c;
    color: white;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-section .btn-consult {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s;
}

.cta-section .btn-consult:hover {
    background: white;
    color: #2c2c2c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-sobremi h1 {
        font-size: 1.8rem;
    }

    .hero-sobremi .lead {
        font-size: 1rem;
    }

    .texto-destacado {
        font-size: 1.1rem;
    }

    .biografia {
        padding: 40px 0;
    }
}