/* home.css - Estilos específicos para la página de inicio */

/* ==========================
   SECCIÓN DE INTRODUCCIÓN
   ========================== */
.home-intro {
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
    color: #fff;
    padding: 1rem 2rem;
}

.home-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00e0ff;
}

.home-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
}

.home-intro a {
    color: #1e90ff;
    text-decoration: none;
}

.home-intro a:hover {
    text-decoration: underline;
}

/* ==========================
   SECCIÓN "SOBRE EL PROYECTO"
   ========================== */
.home-about {
    margin: 3rem auto;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.home-about h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffcc00;
}

.home-about p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* ==========================
   SECCIÓN DESTACADA (CURRÍCULO)
   ========================== */
.highlight {
    margin: 3rem auto;
    text-align: center;
}

.highlight h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #fff;
}

/* ==========================
   BOTÓN DE ACCIÓN
   ========================== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(90deg, #ff0057, #ff7b00);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s ease;
}

.btn:hover {
    background: linear-gradient(90deg, #ff7b00, #ff0057);
    transform: scale(1.05);
}

/* ==========================
   RESPONSIVE PARA HOME
   ========================== */
@media (max-width: 768px) {
    .home-intro h1 {
        font-size: 2rem;
    }
    
    .construct-title {
        font-size: 2.5rem;
    }
    
    .construct-subtitle {
        font-size: 1.2rem;
    }
}