/* Estilos Globales para prevenir el desbordamiento horizontal */
body, html {
    width: 100%;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
}

.general-video,
.general-texto {
    width: 50%;
    height: 100vh;
}

.general-3 {
    background-image: url(../images/lorem2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
}

.general {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
}

.general-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.general-texto{
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px;
    background-color: #3A3A3A;
    text-align: left;
}

.general-texto h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
    color: #000;
    padding: 0px 40px;
}

.general-texto p {
    font-size: 1.3rem;
    line-height: 1.3;
    color: #000;
    padding: 10px 50px;
}

.general-n {
    width: 50%;
    padding: 100px;
    background-color: #3A3A3A;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
}

.general-n .container {
    color: white;
    text-align: left;
}

.general-n h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #000;
}

.boton-contenedor {
    margin-top: 20px;
}

.dar {
    background: linear-gradient(180deg, #BFBFBF, #A6A6A6);
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.dar-container {
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.dar-texto {
    flex: 1;
    min-width: 300px;
}

.dar-texto h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.dar-texto p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.dar-boton {
    flex-basis: 200px;
    text-align: center;
}

.btn-donar {
    display: inline-block;
    padding: 75px 50px;
    margin-top: 20px;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/ofrenda2.jpg') no-repeat center center;
    background-size: cover;
    transition: transform 0.3s ease-in-out;
}

.btn-donar:hover {
    background-color: #1A252F;
    transform: scale(1.05);
}

.servicios {
    padding: 20px 0;
    background: linear-gradient(180deg, #BFBFBF, #A6A6A6), url('https://www.transparenttextures.com/patterns/concrete-wall.png');
    background-blend-mode: overlay;
    text-align: center;
}

.servicios-content {
    text-align: center;
}

.servicios-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    line-height: 70px;
    color: #222222;
    text-transform: uppercase;
    padding: 0 250px;
    margin-bottom: 15px;
}

.txt-p {
    font-size: 18px;
    color: #222222;
    padding: 0 10px;
    margin-bottom: 35px;
}

.servicios-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.servicios-1 img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #2C3E50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicios-1 img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.servicios-1 {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.servicios-1 h3 {
    color: #222222;
    font-size: 20px;
    margin-bottom: 15px;
    padding: 0px;
}

.servicios-1 p {
    color: #222222;
    font-size: 18px;
    padding: 0px;
}

.en-vivo-section {

background: transparent; /* sin fondo */
padding: 3rem 0;
color: #F0F0F0; /* texto claro */

}

 .en-vivo-text{
        color: #fff;
    }

.services{
    background-image: url(../images/blog2.jpg); /* Asegúrate de que la nueva imagen HD se llame así */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 40px 0;
    background-position: center top; /* Subimos la posición de la imagen al máximo */
}

.en-vivo-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
    color: #000;
}

.en-vivo-text {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.en-vivo-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 40px;
}

.facebook-icon {
    font-size: 2.2rem;
    color: #ce967b;
    border: 3px solid #fff;
    border-radius: 50%;
    padding: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
}

.facebook-icon:hover {
    transform: scale(1.15);
    background-color: red;
    color: white;
    border-color: darkred;
}

.img-hover-container {
    overflow: hidden;
    display: inline-block;
    border-radius: 12px;
}

.img-hover-effect {
    transition: transform 0.4s ease-in-out;
    display: block;
    width: 100%;
    height: auto;
}

.img-hover-container:hover .img-hover-effect {
    transform: scale(1.05);
}