* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(to bottom, 
            #228B22 0%, 
            #228B22 30%, 
            #FFFFFF 40%, 
            #FFFFFF 60%, 
            #000000 70%, 
            #000000 100%);
            min-height: 100vh;
            
        }

        
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            align-items: stretch;
        }

        header {
            margin-bottom: 50px;
            background:
                linear-gradient(rgba(128, 128, 128, 0.4), rgba(128, 128, 128, 0.4)),
                url('../img/Parque.png') center/cover no-repeat;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(34, 139, 34, 0.3);
            text-align: center;
        }

        
        h1 {
            font-size: 3.5em;
            color: #000000;
            text-shadow: 2px 2px 4px rgba(34, 139, 34, 0.3);
            margin-bottom: 15px;
            font-weight: bold;
        }

        .subtitle {
            font-size: 1.4em;
            color: #f2f3f2;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .accessibility-controls {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 10px;
            z-index: 1000;
            display: flex;
            gap: 8px;
            backdrop-filter: blur(8px);
        }

        .accessibility-controls button,
        .accessibility-controls select {
            font-size: 0.8em;
            padding: 10px 16px;
            border: none;
            border-radius: 10px;
            background-color: #f0f0f0;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

        .accessibility-controls button:hover,
        .accessibility-controls select:hover {
            background-color: #ddd;
            transform: scale(1.05);
        }

        .grid {
            flex: 0 0 calc(50% - 25px);
            max-width: calc(50% - 25px);
            display: flex;
            justify-content: center;
            align-items: stretch;
            box-sizing: border-box;
        }

        .card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid rgba(34, 139, 34, 0.3);
            position: relative;
            overflow: hidden;
            text-decoration: none !important;
        }

        .cards-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            gap: 25px;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
            transition: left 0.5s;
        }

        .card:hover::before {
            left: 100%;
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(0, 0, 0, 0.4);
        }

        .card-icon {
            font-size: 3em;
            margin-bottom: 20px;
            display: block;
            text-decoration: none !important;
        }

        .card h3 {
            color: #000000;
            font-size: 1.5em;
            margin-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.2);
            font-weight: bold;
        }

        .card p {
            color: #333333;
            font-size: 1em;
            line-height: 1.5;
        }


        .site-footer {
            margin-top: 60px;
            padding: 5px 20px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 15px;
            align-self: flex-start; /* esquina izquierda */
        }

        .footer-logo {
            width: 250px;
            height: auto;
        }
        
        .footer-logo:hover {
            transform: scale(1.1);
        }

        .footer-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            cursor: url('EscudoVDLT.cur') 16 16, url('EscudoVDLT.cur') 16 16, auto;
        }

        .footer-btn {
            background: linear-gradient(135deg, #333, #111);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1em;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
            cursor: url('EscudoVDLT.cur') 16 16, url('EscudoVDLT.cur') 16 16, auto;
        }

        .footer-btn:hover {
            background: linear-gradient(135deg, #444, #222);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4); 
            cursor: url('EscudoVDLT.cur') 16 16, url('EscudoVDLT.cur') 16 16, auto;
}
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            cursor: url('EscudoVDLT.cur') 16 16, url('EscudoVDLT.cur') 16 16, auto;
        }

        .footer-link {
            background: linear-gradient(135deg, #000000, #333333);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(34, 139, 34, 0.3);

        }

        .footer-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            background: linear-gradient(135deg, #333333, #000000);
            border-color: rgba(34, 139, 34, 0.5);
        }

        .footer-link:active {
            transform: translateY(0);
        }

        .welcome-text {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            border: 2px solid rgba(0, 0, 0, 0.1);
        }

        .welcome-text p {
            color: #000000;
            font-size: 1.2em;
            text-align: center;
            line-height: 1.7;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5em;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
            
            .grid {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .footer-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card {
            animation: fadeInUp 0.6s ease-out;
        }

        .card:nth-child(1) { animation-delay: 0.1s; }
        .card:nth-child(2) { animation-delay: 0.2s; }
        .card:nth-child(3) { animation-delay: 0.3s; }
        .card:nth-child(4) { animation-delay: 0.4s; }
        .card:nth-child(5) { animation-delay: 0.5s; }
        .card:nth-child(6) { animation-delay: 0.6s; }
        .card:nth-child(7) { animation-delay: 0.7s; }
        .card:nth-child(8) { animation-delay: 0.8s; }
        .card:nth-child(9) { animation-delay: 0.9s; }

      
        a {
            text-decoration: none !important;
            color: inherit;
        }

a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none !important;
}

nav button {
    padding: 10px 20px;
    background-color: white;
    color: #4e54c8;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

nav button:hover,
nav a.active-link button {
    background-color: #fff176;
    color: #000;
    transform: scale(1.05);
}

/* Cursor personalizado: escudo */
html, body, header, footer, .container, .grid, .card, .site-footer, .footer-links, .footer-btn,
button, a, input, textarea, select {
  cursor: url('EscudoVDLT.cur') 16 16, url('EscudoVDLT.cur') 16 16, auto;
}

        