/* ===================== FUENTE GENERAL ===================== */
* {
    font-family: 'Poppins', sans-serif;
}

/* ===================== NAVBAR ===================== */
.cintillo {
    background: rgba(255, 255, 255) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
/* ===================== NAVBAR ===================== */
.navbar {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ===================== HERO ===================== */
.hero-section {
    min-height: 100vh;
    /*background: url('https://images.unsplash.com/photo-1571008887538-b36bb32f4571?w=1920') center/cover no-repeat;*/
    background: url('../images/fondo_caminata_3k.jpeg') center/cover no-repeat;
    position: relative;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /*background: linear-gradient(135deg, rgba(13, 110, 253, 0.85), rgba(25, 135, 84, 0.80));*/
    background: linear-gradient(135deg, rgba(48, 116, 156, 0.85), rgba(144, 205, 240, 0.80));
}
.hero-section h5 {
     text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.detail-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 15px;
    min-width: 140px;
}

/* ===================== ANIMACIONES ===================== */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out;
}
.animate-fade-up-delay {
    animation: fadeUp 0.8s ease-out 0.2s both;
}
.animate-fade-up-delay-2 {
    animation: fadeUp 0.8s ease-out 0.4s both;
}
.animate-fade-up-delay-3 {
    animation: fadeUp 0.8s ease-out 0.6s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}
.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== FORMULARIO ===================== */
.form-card {
    border-radius: 16px;
    overflow: hidden;
}
.form-card .card-header {
    /*background: linear-gradient(135deg, #0d6efd, #198754);*/
    background: linear-gradient(135deg, #30749C, #90CDF0 );
    padding: 2rem;
}
.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* ===================== BOTONES ===================== */
.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
    transition: all 0.3s;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0b5ed7, #0a58ca);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}
.btn-warning {
    transition: all 0.3s;
}
.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 600px) {
    .hero-section h5 { 
		font-size: 2rem;	}
	.hero-section {               /* Reducir altura del contenedor */
        background-size: contain;     /* Ajusta la imagen completa dentro del contenedor */
        background-position: center;  /* Mantener centrada */
    }
    .detail-box { min-width: 100px; padding: 10px; }
    .form-card .card-body { padding: 1.5rem !important; }
}
@media (max-width: 960px) {
    .hero-section h5 { 
		margin-top: 50px;
		font-size: 2rem;	}
}
