@font-face {
    font-family: 'BrittanySignature';
    src: url('../fonts/BrittanySignature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway-Bold';
    src: url('../fonts/Raleway-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway-ExtraBold';
    src: url('../fonts/Raleway-ExtraBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway-ExtraLight';
    src: url('../fonts/Raleway-ExtraLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway-Heavy';
    src: url('../fonts/Raleway-Heavy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway-Light';
    src: url('../fonts/Raleway-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway-Medium';
    src: url('../fonts/Raleway-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway-Regular';
    src: url('../fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway-SemiBold';
    src: url('../fonts/Raleway-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway-Thin';
    src: url('../fonts/Raleway-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TrashHand';
    src: url('../fonts/TrashHand.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}
 /*INICIA SECCION DE ESTILOS*/
:root {
    --primary-color: #007bff;
    --hover-color: #0056b3;
    --background-color: #f4f4f4;
    --text-color: #000000;
    --light-bg: #f0f0f0;
    --medium-bg: #d0d0d0;
    --dark-bg: #e0e0e0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Raleway-SemiBold';
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    background-image: url('../imagen/fondo1.png'); /* Cambia esto por la ruta de tu imagen */
}
/* Contenedor principal */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 80%;
    margin: 20px auto;
    padding: 0 20px;
}
.container img {
    width: 200px;
    height: auto; /* Altura automática */
}
/* Navegación */
nav {
    flex-grow: 1;
    text-align: right;
}
nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}
nav ul li {
    margin-left: 30px;
}
nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s;
}
nav ul li a:hover {
    color:  rgb(255, 167, 1); /* Color al pasar el cursor */
}
nav ul li a.active {
    color:  rgb(0, 0, 0); /* Color para el enlace activo */
    border-bottom: 2px solid rgb(255, 167, 1); /* Línea debajo del enlace activo */
}
/* Contenedor del horario */
.horario {
    background-color: #f7d18d;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 10px 0;
    font-size: 10px;
}
.contenido-principal {
    text-align: center;
    padding: 0px 0;
}

.parrafo-contenedor {
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
   
}

.contenido-principal h1 {
    font-size: 30px;
    color: #000000;
    margin-bottom: 20px;
}

.contenido-principal p {
    font-size: 1.2em;
    color: #333;
}

span {
    color: rgb(255, 167, 1);
    font-family: 'TrashHand';
    font-size: 50px;
    line-height: 1.5; /* Ajusta este valor para reducir el espacio entre líneas */
    }
    .contenido-principal strong {
    color: #DC8F78;
    font-weight: bold;
    font-family: 'Raleway-Bold';
}

.nosotros-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Espacio entre imágenes */
    padding: 20px;
}

.nosotros {
    flex: 1 1 calc(33.333% - 40px); /* 3 por fila con espacio incluido */
    box-sizing: border-box;
    max-width: calc(33.333% - 40px);
}

.nosotros img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-contenido {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar:hover {
  color: #ccc;
}

.anterior, .siguiente {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  user-select: none;
  transition: 0.3s;
}

.anterior {
  left: 0;
}

.siguiente {
  right: 0;
}

.anterior:hover, .siguiente:hover {
  color: #bbb;
}
.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 20px;
  text-align: center;
}

.footer-container .info-item {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-container .info-item img {
  width: 40px;
  margin-bottom: 10px;
}

.footer-container .info-item p {
  margin: 0;
  font-size: 14px;
}

.redes-sociales .iconos-redes {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.redes-sociales .iconos-redes img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.redes-sociales .iconos-redes img:hover {
  transform: scale(1.2);
}
