/* ESTILOS FORMALES Y ELEGANTES */
/* Versión concisa y limpia */

.bienvenida-contenido {
    min-height: 100vh;
    background: white;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bienvenida-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 50px 30px;
}

/* Badge Bicentenario */
.badge-bicentenario {
    display: inline-block;
    background: #2d6a4f;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Imagen circular */
.imagen-circular {
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #f1f3f4;
}

.imagen-circular img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Título */
.titulo-bienvenida {
    font-size: 2.2rem;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

/* Texto */
.texto-bienvenida {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto 30px;
    max-width: 700px;
    font-family: 'Lora', serif;
}

/* Botón */
.boton-elegante {
    display: inline-block;
    background: transparent;
    color: #2d6a4f;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 1px solid #2d6a4f;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.boton-elegante:hover {
    background: #2d6a4f;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bienvenida-container {
        padding: 30px 20px;
    }
    
    .imagen-circular {
        width: 220px;
        height: 220px;
    }
    
    .titulo-bienvenida {
        font-size: 1.8rem;
    }
    
    .texto-bienvenida {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .badge-bicentenario {
        font-size: 13px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .bienvenida-contenido {
        padding: 30px 15px;
    }
    
    .imagen-circular {
        width: 200px;
        height: 200px;
    }
    
    .titulo-bienvenida {
        font-size: 1.6rem;
    }
    
    .boton-elegante {
        padding: 10px 25px;
    }
}
/* Botón con borde verde */
.boton-bienvenida {
    display: inline-block;
    background: white;
    color: #2d6a4f;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 2px solid #2d6a4f;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.boton-bienvenida:hover {
    background: #2d6a4f;
    color: white;
}
