:root {
    --primary-red: #E63946;
    --dark-blue: #1D3557;
    --accent-blue: #457B9D;
    --soft-white: #F1FAEE;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --bg-light: #F8F9FA;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand span {
    color: var(--primary-red) !important;
}

.nav-link {
    color: var(--dark-blue) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../img/hero-banner.png');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    position: relative;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.hero .text-danger {
    color: #ff6b6b !important; /* Un rojo más brillante para fondos oscuros */
}

.hero .btn-outline-primary {
    color: white;
    border-color: white;
}

.hero .btn-outline-primary:hover {
    background-color: white;
    color: var(--dark-blue);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.glass-card:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn-danger {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c0392b;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--primary-red);
}

/* Stats */
.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-red);
}

/* Mascota Widget */
.mascot-widget {
    position: absolute;
    bottom: -50px;
    right: 50px;
    width: 200px;
    z-index: 10;
}

/* Footer Improvements */
.filter-white {
    filter: brightness(0) invert(1);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 991px) {
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 80px 0; }
    .mascot-widget { display: none; }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.floating-anim { animation: float 3s ease-in-out infinite; }

.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.ls-2 { letter-spacing: 2px; }

.object-fit-cover { object-fit: cover; }


.overflow-visible { overflow: visible !important; }
.rounded-start-5 { border-top-left-radius: 2rem !important; border-bottom-left-radius: 2rem !important; }
.rounded-end-5 { border-top-right-radius: 2rem !important; border-bottom-right-radius: 2rem !important; }

@media (min-width: 768px) {
    .mascot-pop-out {
        transform: translateX(-30px) scale(1.15);
        z-index: 100;
    }
}

