/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    margin: 0;
    background: #f7fafc;
    color: #2d3748;
    line-height: 1.7;
}

:root {
    --eco-primary: #10b981;
    --eco-secondary: #059669;
    --eco-dark: #047857;
    --eco-light: #d1fae5;
    --eco-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Navbar */
.navbar-brand.logo-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--eco-primary) !important;
    text-decoration: none;
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--eco-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-menu-modern {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0.75rem;
}

.dropdown-item:hover {
    background: var(--eco-light);
    color: var(--eco-dark);
    transform: translateX(5px);
}

/* Map Section */
#mapa {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 100%);
}

#mapa h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--eco-dark);
    font-weight: 800;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

#mapa iframe {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: fadeInUp 0.8s ease;
    transition: transform 0.3s ease;
}

#mapa iframe:hover {
    transform: translateY(-5px);
}

/* Schedule Section */
#horarios {
    padding: 4rem 0;
}

#horarios h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--eco-dark);
    font-weight: 800;
    margin-bottom: 2rem;
}

#horarios ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

#horarios li {
    background: white;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 4rem;
    animation: fadeInLeft 0.8s ease;
    animation-fill-mode: both;
}

#horarios li:nth-child(1) { animation-delay: 0.1s; }
#horarios li:nth-child(2) { animation-delay: 0.2s; }
#horarios li:nth-child(3) { animation-delay: 0.3s; }

#horarios li::before {
    content: '📍';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

#horarios li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    background: var(--eco-light);
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-links h3,
.footer-social h3,
.footer-newsletter h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-info p,
.footer-links a,
.footer-social a {
    color: #a0aec0;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-links ul,
.list-unstyled {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--eco-primary);
    padding-left: 5px;
}

.footer-social a {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-newsletter .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 0.75rem 1.25rem;
}

.footer-newsletter .btn {
    border-radius: 0 50px 50px 0;
    background: var(--eco-gradient);
    border: none;
    padding: 0.75rem 1.5rem;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #mapa, #horarios {
        padding: 3rem 0;
    }
    
    #mapa h2, #horarios h2 {
        font-size: 2rem;
    }
    
    #horarios li {
        padding: 1.25rem 1.5rem;
        padding-left: 3.5rem;
        font-size: 0.95rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}
