@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');

:root {
    --white: #fff;
    --black: #2e2e2e;
    --gray: #787878;
    --highlight: #ea8478;
    --footer: #f7f7f7;
    /* Tonos derivados del color principal */
    --color-primary-1: #fff2f5; /* Muy claro, fondo */
    --color-primary-2: #ffc8d5; /* Claro, fondos secundarios */
    --color-primary-3: #ff92ab; /* Medio claro */
    --color-primary-4: #ed3964; /* Color base */
    --color-primary-5: #b62048; /* Un poco más oscuro */
    --color-primary-6: #891834; /* Mucho más oscuro, ideal para hover o acentos fuertes */

    /* Neutros adaptados */
    --color-neutral-0: #ffffff;  /* Fondo principal */
    --color-neutral-1: #1a0f14;  /* Texto fuerte o fondo oscuro */
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-1);
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    color: white
}

.btn-default:hover {
    background-color: var(--color-primary-3);
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: var(--color-neutral-0);
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-neutral-1);;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--color-primary-6);
    font-size: 1.9rem;
}

.section-subtitle {
    font-size: 2.0rem;
}

.description-quienes-somos {
    font-size: 1.0rem;
    font-weight: 600;
    background-color: #fff2f5;
    border-radius: 10px;
    border: 1px solid #891834 ;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}




.titulo-quien {
    padding-top: 30px;
    padding-bottom: 35px;
}




/* Estilos para la galería */
.txt-eventos {
    text-align: center;
    padding-bottom: 35px;
}
  
.grid {
    display: grid;
    grid-gap: 1.5rem;
}
  
  /* Sistema de columnas responsive */
.column-xs-12 {
    grid-column: span 12;
}
  
  @media (min-width: 768px) {
    .column-md-4 {
      grid-column: span 4;
    }
    
    .column-md-6 {
      grid-column: span 6;
    }
  }
  
  /* Estilos para los contenedores de imágenes */
  .img-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .img-container:hover {
    transform: translateY(-5px);
  }
  
  .img-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }
  
  .img-container:hover img {
    transform: scale(1.05);
  }
  
  /* Estilos para el contenido de la imagen */
  .img-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: linear-gradient(to top, #891834 1%, transparent);
    color: white;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.8s ease;
  }
  
  .img-content .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
  
  .img-content .category {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
  }
  
  /* Estilos para el hover */
  .img-content-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    text-align: center;
  }
  
  .img-container:hover .img-content {
    opacity: 0;
  }
  
  .img-container:hover .img-content-hover {
    opacity: 1;
  }
  
  .img-content-hover .title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }
  
  .img-content-hover .category {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
  }
  
  .img-container:hover .img-content-hover .title,
  .img-container:hover .img-content-hover .category {
    transform: translateY(0);
  }
  
  /* Ajuste para la imagen grande inferior */
  .column-xs-12 .img-container img {
    height: 400px;
  }
  
  @media (min-width: 768px) {
    .column-xs-12 .img-container img {
      height: 500px;
    }
  }



