/* ============================= Sección con el Logo ============================= */
#start-necesito-ayuda {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.6), rgba(187, 222, 251, 0.6));
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px; 
    width: 100%; 
    margin: 0 auto; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.logo-ayuda {
    width: 150px; 
    height: auto;
    max-width: 40%; 
    display: block;
    margin: 0 auto;
    animation: flotar 1.5s ease-in-out infinite alternate; 
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.2)); 
}

@keyframes flotar {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* ============================= Sección de Texto ============================= */
#info-necesito-ayuda h2 {
    font-family: 'Caveat', cursive; 
    font-size: 2.5rem; 
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

#info-necesito-ayuda h3 {
    font-family: 'Oswald', sans-serif; 
    font-weight: 700; 
    font-size: 2rem; 
    text-transform: uppercase; 
    color: #0056b3; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); 
}


#info-necesito-ayuda p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #333; 
}

#info-necesito-ayuda {
    padding: 3rem 0;
    background: white;
    text-align: center;
}

#info-necesito-ayuda h2 {
    font-weight: bold;
    font-size: 2.5rem;
    color: #004080;
    margin-bottom: 10px;
}

#info-necesito-ayuda h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3272B8;
    margin-bottom: 15px;
}

#info-necesito-ayuda p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Sección Temas */
.temas-section {
    background: white;
    padding: 3rem 1rem;
    border-radius: 15px;
}


/* Título de la Sección */
.temas-section h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

/* ======================= Tarjetas con Imagen ======================= */
.tema-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 200px;       
    margin: 0 auto;
}

.tema-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tema-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ============================= Sección de Contacto ============================= */
.contacto-section {
    background: linear-gradient(to right, #e3f2fd, #d6e9f9); 
    padding: 8rem 2rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  
.contacto-section h2 {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

.contacto-section p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

/* ============================= Correos ============================= */
.correos-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.correos-container h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #0056b3;
    margin-bottom: 1rem;
    text-align: center;
}

.correo-card {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.correo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.correo-card i {
    font-size: 1.5rem;
    color: #0056b3;
}

.correo-card a {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.correo-card a:hover {
    color: #0056b3;
}

/* ============================= Formulario ============================= */
.contact-card {
    font-family: 'Oswald', sans-serif;
    background: #f9fbff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.titulo-contacto {
    font-size: 2.5rem;
    color: #0056b3;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0.5rem;
}

.subtitulo-contacto {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: #183b52;
    font-weight: 600;
}

.descripcion-contacto {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin: 1rem 0 2rem 0;
}

.contact-card .form-control {
    border-radius: 8px;
    padding: 0.9rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.contact-card .form-control:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.btn-submit {
    font-family: 'Oswald', sans-serif;
    background: #0056b3;
    color: white;
    padding: 0.8rem 2rem;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.btn-submit:hover {
    background: #003f7f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

  
  /* =================== Collage  =================== */
  .collage-imagenes {
    position: relative;
    width: 300px; 
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px; 
  }
  
  .collage-imagenes img {
    position: absolute;
    width: 380px; 
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
  }
  
  /* Posición estilo zigzag */
  .collage-imagenes .img1 {
    top: 60px;
    left: 0;
    z-index: 2;
  }
  
  .collage-imagenes .img2 {
    top: -150px;
    left: 200px;
    z-index: 3;
  }
  
  .collage-imagenes .img3 {
    top: 200px;
    left: 180px;
    z-index: 1;
  }

  @media (max-width: 768px) {
    #start-necesito-ayuda { 
        padding: 2rem 0;
        margin-top: 05px;
    }

    #info-necesito-ayuda h2 {
        font-size: 18px; 
    }
    
    #info-necesito-ayuda h3 {
        font-size: 18px; 
    }
    
    #info-necesito-ayuda p {
        font-size: 18px;
    }
    
    #info-necesito-ayuda h2 {
        font-size: 18px;
    }
    
    #info-necesito-ayuda h3 {
        font-size: 18px;
    }
    
    #info-necesito-ayuda p {
        font-size: 18px;
    }

    .temas-section h2 {
        font-size: 30px;
    }
    }