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

:root {
    --azul-marino: #1a4d6d;
    --azul-oscuro: #0f3550;
    --dorado: #d4a036;
    --celeste: #5dade2;
    --blanco: #ffffff;
    --gris-claro: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f4f8;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1920&h=1080&fit=crop') center/cover no-repeat fixed;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    background: rgba(26, 77, 109, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: start;
}

.logo-container img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.logo-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dorado);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--dorado);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--dorado);
}

.donate-button-nav {
    background: var(--dorado);
    color: var(--azul-marino);
    padding: 1.7rem 3.5rem;
    border-radius: 60px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(212, 160, 54, 0.3);
}

.donate-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 54, 0.5);
}

/* Hero Slideshow Section - Full Screen */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active img {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 53, 80, 0.85) 0%,
        rgba(26, 77, 109, 0.7) 50%,
        rgba(15, 53, 80, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    border: 5px solid var(--dorado);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 30px rgba(212, 160, 54, 0.5);
    transform: scale(0.8) rotateY(180deg);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-slide.active .hero-logo {
    transform: scale(1) rotateY(0deg);
    transition-delay: 0.5s;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    font-weight: bold;
    line-height: 1.2;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-slide.active .hero-content h1 {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-slide.active .hero-content p {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.9s;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-slide.active .cta-buttons {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1.1s;
}

/* Hero Navigation Buttons */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 3rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    z-index: 100;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-nav:hover {
    background: rgba(212, 160, 54, 0.9);
    border-color: var(--dorado);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(212, 160, 54, 0.5);
}

.hero-prev {
    left: 2rem;
    border-radius: 0 50% 50% 0;
}

.hero-next {
    right: 2rem;
    border-radius: 50% 0 0 50%;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 100;
    background: rgba(15, 53, 80, 0.5);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-dots .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.hero-dots .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--dorado);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-dots .dot.active {
    background: var(--dorado);
    transform: scale(1.4);
    box-shadow: 0 0 20px var(--dorado), 0 0 40px rgba(212, 160, 54, 0.5);
}

.hero-dots .dot.active::before {
    width: 100%;
    height: 100%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

.hero-dots .dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-primary {
    background: var(--dorado);
    color: var(--azul-marino);
    box-shadow: 0 8px 25px rgba(212, 160, 54, 0.4);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 160, 54, 0.6);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--azul-marino);
    transform: translateY(-5px);
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(135deg, var(--dorado) 0%, #e6b84d 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 2rem 1rem;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.1);
}

.stat-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.3));
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
}

.stat-card:nth-child(1) .stat-icon {
    animation-delay: 0s;
}

.stat-card:nth-child(2) .stat-icon {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) .stat-icon {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stat-number {
    font-size: 4.5rem;
    font-weight: bold;
    color: white;
    margin: 1rem 0;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    line-height: 1;
}

.stat-label {
    font-size: 1.5rem;
    color: var(--azul-oscuro);
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slideshow Section */
.slideshow-section {
    padding: 5rem 2rem;
    background: white;
}

.slideshow-container {
    max-width: 1200px;
    margin: 0 auto;
}

.slideshow-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--azul-marino);
    margin-bottom: 1rem;
}

.slideshow-container h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--dorado);
    margin: 1rem auto 3rem;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--azul-marino);
    z-index: 10;
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 1rem;
    border-radius: 0 10px 10px 0;
}

.slider-next {
    right: 1rem;
    border-radius: 10px 0 0 10px;
}

.slider-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--dorado);
    transform: scale(1.3);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2, .about-text h3 {
    font-size: 2.5rem;
    color: var(--azul-marino);
    margin-bottom: 1.5rem;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--dorado);
    margin-top: 1rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 77, 109, 0.2);
}

/* Values Section */
.values {
    background: var(--gris-claro);
    padding: 5rem 2rem;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--azul-marino);
    margin-bottom: 1rem;
}

.values h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--dorado);
    margin: 1rem auto 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--celeste);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 77, 109, 0.15);
    border-top-color: var(--dorado);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--azul-marino);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: #666;
}

/* Donation Banner */
.donation-banner {
    background: linear-gradient(135deg, var(--dorado) 0%, #e6b84d 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--azul-marino);
}

.donation-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.donation-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.donate-button-large {
    display: inline-block;
    background: var(--azul-marino);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.0rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(26, 77, 109, 0.3);
}

.donate-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(26, 77, 109, 0.5);
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--azul-marino);
    margin-bottom: 1rem;
}

.contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--dorado);
    margin: 1rem auto 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--gris-claro);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--celeste);
}

.contact-info h3 {
    color: var(--azul-marino);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: var(--azul-marino);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--celeste);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background: var(--azul-marino);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 1.1rem;
}

.submit-button:hover {
    background: var(--azul-oscuro);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 77, 109, 0.3);
}

/* Footer */
footer {
    background: var(--azul-oscuro);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    margin: 0.5rem 0;
}

.footer-accent {
    color: var(--dorado);
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0.5rem 1rem;
    }

    .logo-container {
        justify-self: center;
    }

    .nav-links {
        display: none;
    }

    .logo-container img {
        height: 70px;
        width: 70px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    /* Hero Slideshow Responsive */
    .hero-slideshow {
        height: 100vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .hero-nav {
        font-size: 2rem;
        padding: 0.8rem 1.2rem;
    }

    .hero-prev {
        left: 0.5rem;
    }

    .hero-next {
        right: 0.5rem;
    }

    .hero-dots {
        bottom: 2rem;
        padding: 0.7rem 1.5rem;
    }

    .hero-dots .dot {
        width: 12px;
        height: 12px;
    }

    /* Stats Section Responsive */
    .stats-section {
        padding: 3rem 1rem;
    }

    .stat-card {
        padding: 1.5rem 0.5rem;
    }

    .stat-icon {
        font-size: 3.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .slide img {
        height: 300px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .donation-options h2,
    .values h2,
    .slideshow-container h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        height: 60px;
        width: 60px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .cta-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero-nav {
        font-size: 1.5rem;
        padding: 0.6rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 3rem;
    }
}

@media (min-width: 1920px) {
    .logo-container img {
        height: 110px;
        width: 110px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 3rem;
    }

    .nav-links a {
        font-size: 1.15rem;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }

    .hero-content p {
        font-size: 1.6rem;
    }

    .hero-logo {
        width: 220px;
        height: 220px;
    }

    .stat-number {
        font-size: 5rem;
    }

    .stat-icon {
        font-size: 6rem;
    }
}

/* === Estilo unificado del menú === */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1); /* transparencia */
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Contenedor del menú */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 60px;
}

/* Logo alineado a la izquierda */
.logo-container img {
    height: 60px;
    width: auto;
}

/* Enlaces centrados y estilo base */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Hover general */
.nav-links a:hover {
    color: #FFD700; /* dorado */
}

/* === Botón especial "Donaciones" === */
.nav-links a[href*="donaciones"] {
    background-color: #FFD700;  /* dorado */
    color: #333;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a[href*="donaciones"]:hover {
    background-color: #e6c200; /* tono dorado más oscuro */
    transform: scale(1.05);
    color: #111;
}

