@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat';
        }
        
        html {
            scroll-behavior: smooth;
        }

      /* *********************/
        /* S E C C I O N - I N I C I O */
        /* *********************/

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        h2 {
            animation: fadeIn 1s ease forwards;
            .presentacion {
                text-align: justify;
            }
            
        } 

        
        #inicio .contenido header {
            background-color: rgba(0, 0, 0, .8);
            position: fixed;
            width: 100%;
            z-index: 100;
            top: 0;
        }
        
        #inicio .contenido header .contenido-header {
            max-width: 1100px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }
        
        #inicio .contenido header .contenido-header h1 {
            text-align: center;
            color: #ffc400;
        }   
        
        #inicio .contenido header .contenido-header nav ul {
            list-style: none;
            display: flex;
            align-items: center;
        }
        
        #inicio .contenido header .contenido-header nav ul li a {
            text-decoration: none;
            color: #fff;
            margin: 0 12px;
            font-weight: 400;
            transition: .5s;
        }
        
        #inicio .contenido header .contenido-header nav ul li a:hover {
            color: #ffc400;
        }
        
        #inicio .contenido header .contenido-header .redes a {
            text-decoration: none;
            color: #fff; /*  redes colores */
            display: inline-block;
            margin-left: 10px;
            transition: .5s;
        }
        
        #inicio .contenido header .contenido-header .redes a:hover {
            color: #ffc400;
        }
        
        #inicio .contenido header .contenido-header .seleccionado {
            color: #ffc400;
        }
        
    
        
        #inicio .contenido .presentacion a:hover {
            background-color: #ffc400;
        }
        
        #icono-nav {
            color: #fff;
            display: none;
        }

 















/* Variables para colores y fuentes */
:root {
    --primary-color: #ffc400; /* Naranja/Mostaza de las imágenes */
    --secondary-color: #000; /* Azul cielo, amigable */
    --accent-color: #000; /* Amarillo brillante para acentos */
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #fff; /* Fondo más suave, casi crema */
    --bg-card: #ffffff;
    --bg-blue-card: #4A90E2; /* Azul de la tarjeta bancaria */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Estilos Generales */
body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7; /* Mayor legibilidad */
    overflow-x: hidden;
}

h1, h2, h3, h4 {

    text-align: center;
    margin-bottom: 25px;
    line-height: 1.2;
}

h1 {
    font-size: 3.5em;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px; /* Ligero ajuste para un look moderno */
}

h2 {
    font-size: 2.8em;
    color: #000;
    margin-top: 50px;
    font-weight: 700;
}

h4 {
    font-size: 2.8em !important;
    color: #000;
    margin-top: 50px;
    font-weight: 700;
}

h3 {
    font-size: 1.8em;
    color: #000 ;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex; /* Para alinear ícono y texto */
    align-items: center;
    justify-content: center; /* Centrar el título de la opción */
    gap: 10px; /* Espacio entre ícono y texto */
}

p {
    margin-bottom: 1em;
    font-size: 1.1em;
}

/* Botones */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
    margin-top: 30px;
}

.btn-primary:hover {
    background-color: #ffc400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(90, 169, 230, 0.3);
}

.btn-secondary:hover {
    background-color: #7BC5FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(90, 169, 230, 0.4);
}

/* Iconos */
.icon-large {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.icon-small {
    font-size: 1.2em;
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Hero Section */

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/Banner\ donar\ 2.png') no-repeat center center/cover; /* Reemplaza con una imagen de animales o refugio */
    color: var(--text-light);
    padding: 200px 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 1.2s ease-out;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content p {
    font-size: 1.5em;
    margin-top: 25px;
    font-weight: 300;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Introducción Amigable */
.intro-message {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 40px auto;
    background-color: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    animation: slideInUp 0.8s ease-out;
}

.intro-message h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2.5em;
}

.intro-message p {
    font-size: 1.2em;
    color: #555;
}


.how-to-help {
    padding: 60px 20px;
    margin-bottom: 50px;
    background-color: #fff; /* Un tono verde muy suave o crema para esta sección */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.how-to-help h2 {
    color: var(--primary-color);
    font-size: 2em;
}

.help-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.option-item {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 35px;
    flex: 1 1 30%; /* Tres columnas */
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.option-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.option-item p {
    flex-grow: 1; 
    margin-bottom: 20px;
}

.option-item ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px 0;
    text-align: left;
    width: 100%;
}

.option-item ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    display: flex;
    align-items: center;
}

/* Bank Details Section */

.bank-details {
    background-color: #fff;
    color: var(--text-light);
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.9s ease-out;
}

.bank-details::before { /* Huella de pata en la esquina superior izquierda */
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-image: url(''); /* Reemplaza con una imagen de pata blanca */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    transform: rotate(-15deg);
}

.bank-details::after { /* Huella de pata en la esquina inferior derecha */
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-image: url(); /* Reemplaza con una imagen de pata blanca */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    transform: rotate(25deg);
}


.bank-details h2 {
    color: #000;
    margin-bottom: 15px;
    font-size: 3em;
}

.bank-intro {
    color: #000;
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.bank-card {
    background-color: var(--bg-blue-card);
    color: var(--text-light);
    padding: 35px;
    border-radius: 20px;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3); /* Borde suave */
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.bank-logo {
    font-weight: 700;
    font-size: 2.2em;
    color: #fff; /* Dorado para BBVA */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.card-name {
    font-size: 1.6em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-details p {
    margin-bottom: 12px;
    font-size: 1.2em;
    text-align: left;
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.card-details strong {
    color: var(--accent-color); /* Amarillo para resaltar */
}

.card-illustrations {
    position: absolute;
    bottom: -20px; /* Ajusta para visibilidad */
    right: -20px; /* Ajusta para visibilidad */
    z-index: 0;
    opacity: 0.8; /* Ligeramente transparente */
}

.card-illustrations .cat-illustration {
    width: 120px;
    height: 120px;
    position: absolute;
    bottom: -10px;
    left: -10px;
    transform: rotate(-15deg);
}

.card-illustrations .dog-illustration {
    width: 120px;
    height: 120px;
    position: absolute;
    top: -10px;
    right: -10px;
    transform: rotate(15deg);
}

.bank-note {
    margin-top: 40px;
    font-size: 1.2em;
    color: #000;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Media Section */
.social-impact {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.social-impact h2 {
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.social-impact p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.15em;
    color: #555;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    background-color: #f0f4f7; /* Fondo suave para los botones */
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 1.05em;
}

.social-btn i {
    font-size: 1.5em;
    margin-right: 12px;
}

.social-btn.facebook:hover {
    background-color: #3b5998;
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 89, 152, 0.4);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.social-btn.tiktok:hover {
    background-color: #000;
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    text-align: center;
    padding: 25px;
    font-size: 1em;
    margin-top: 40px;
}

/* Animaciones */


@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Media Queries para Responsividad */
@media (max-width: 992px) {
    .help-options {
        gap: 30px;
    }
    .option-item {
        flex: 1 1 45%; /* Dos columnas en tablet */
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 2.2em;
    }
    h3 {
        font-size: 1.5em;
    }
    .hero-content p {
        font-size: 1.3em;
    }
    .intro-message {
        padding: 40px 15px;
        margin: 30px auto;
    }
    .how-to-help {
        padding: 40px 15px;
    }
    .option-item {
        flex: 1 1 90%; /* Una columna en móvil */
        max-width: 450px;
    }
    .bank-details {
        padding: 40px 15px;
    }
    .bank-card {
        padding: 25px;
    }
    .card-illustrations .cat-illustration,
    .card-illustrations .dog-illustration {
        width: 90px;
        height: 90px;
    }
    .social-impact {
        padding: 40px 15px;
    }
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    .social-btn {
        width: 80%; /* Ancho para los botones sociales */
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .hero-section {
        padding: 80px 15px;
        min-height: 400px;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .intro-message p {
        font-size: 1.05em;
    }
    .bank-intro, .bank-note {
        font-size: 1.05em;
    }
    .card-details p {
        font-size: 1.1em;
        padding-left: 10px;
    }
    .social-btn {
        font-size: 0.95em;
        padding: 10px 15px;
    }
}


/* --- Estilos menú responsive --- */

/* Por defecto, el botón de hamburguesa está oculto en desktop */
.menu-btn {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1100;
}

/* Estilos para pantallas con un ancho máximo de 768px (dispositivos móviles) */
@media (max-width: 768px) {
    /* Mostrar el botón de menú en dispositivos móviles */
    .menu-btn {
        display: block; /* ¡Ahora se mostrará! */
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Ocultar las redes sociales en móviles */
    .redes {
        display: none;
    }

    /* Contenedor del menú (estado oculto por defecto) */
    nav {
        /* Oculta el menú a la derecha de la pantalla */
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(5px);
        padding: 80px 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }
    
    /* Muestra el menú cuando tiene la clase 'responsive' */
    nav.responsive {
        right: 0;
    }

    /* Estilos del menú */
    nav ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        margin: 20px 0;
        text-align: center;
    }

    nav ul li a {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: #ffc400; /* Color de hover consistente */
    }
}

