/* sitio_publico/css/estilos.css */

html, body {
    overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #495057;
}

.navbar-brand strong {
    font-weight: 600;
}

.hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    color: white;
    background-image: url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(13, 110, 253, 0.7);
}
.hero .container {
    position: relative;
}
.hero h1 {
    font-weight: 700;
    font-size: 3.5rem;
}
.hero .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1rem auto;
    color: rgba(255, 255, 255, 0.9);
}

.section {
    padding: 5rem 0;
}
.section-title {
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #212529;
}

.feature-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1.5rem;
    background-color: #e7f1ff;
    border-radius: 50%;
}
.feature-card {
    border: 0;
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-light:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}

/* --- **ESTILOS CORREGIDOS PARA BOTONES DE NAVEGACIÓN** --- */
.btn-nav-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-width: 160px;
    padding-top: 0.6rem;    /* Ajustamos el padding */
    padding-bottom: 0.6rem;
}

.btn-main-text {
    font-size: 0.85rem;
    line-height: 1.1;
}

.btn-subtext {
    font-size: 0.65rem;
    font-weight: 300;
    line-height: 1.1;
    min-height: 1em; /* Asegura un espacio mínimo aunque esté vacío */
}
/* ----------------------------------------------------------- */

.cta-section {
    background-color: #f8f9fa;
}

footer {
    border-top: 1px solid #e9ecef;
    padding: 2rem 0;
    color: #6c757d;
}