/* Reset de márgenes y padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}


/* DISABLE */
body {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

img {
  pointer-events: none;
  user-select: none;    
  -webkit-user-drag: none; 
}


/* Estilo para la Announcement Bar */
.announcement-bar {
  background-color: #ed5f41;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  z-index: 20;
  width: 100%;
  position: relative;
}

/* Contenedor del header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Estilo para el logo */
header .logo img {
  max-width: 250px;
  height: auto;
  transition: width 0.3s ease;
  width: 100%;
}

/* Estilo para la sección de ubicación */
#ubicacion {
  background-color: #f3f2f4;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='199' viewBox='0 0 100 199'%3E%3Cg fill='%23d7d5da' fill-opacity='1'%3E%3Cpath d='M0 199V0h1v1.99L100 199h-1.12L1 4.22V199H0zM100 2h-.12l-1-2H100v2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat; 
  background-size: 150px 150px; 
  padding: 50px 0; 
  color: #333; 
}

#ubicacion h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#ubicacion p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Responsivo */
@media (max-width: 768px) {
  #ubicacion {
    padding: 30px 15px; /* Reducir padding en pantallas pequeñas */
  }

  #ubicacion h2 {
    font-size: 1.5rem; 
  }

  #ubicacion p {
    font-size: 0.9rem; 
  }

  #map-container {
    height: 300px; /* Ajustar altura del mapa */
  }
}

/* Barra de navegación */
nav {
  background-color: #ed5f41;
  border-radius: 12px; /* Esquinas redondeadas */
  padding: 10px 20px;
  position: relative;
  display: flex;
  justify-content: center; /* Centrar los elementos */
  gap: 20px; /* Separación entre los enlaces */
  transform: translateX(20px); /* Mover hacia la derecha */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Efecto de sombra */
}

/* Enlaces de navegación */
nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #FFD700; /* Color dorado cuando pasamos el cursor */
  transform: scale(1.1); /* Efecto de aumento */
}

nav ul {
  display: flex;
  justify-content: center; /* Centra los elementos */
  align-items: center;
}

nav ul li {
  list-style-type: none; /* Elimina los puntos de lista */
}

/* Añadimos un hover para el anuncio también */
.announcement-bar {
  background-color: #003366; /* El mismo color que el fondo de la nav */
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold; /* Hacemos el texto en negrita también para el anuncio */
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 10px;
    gap: 10px; /* Reducir separación entre enlaces */
    transform: translateX(0); /* Resetear la traslación */
  }

  nav a {
    font-size: 14px; /* Reducir tamaño de la fuente */
  }

  .announcement-bar {
    font-size: 14px; /* Reducir tamaño del texto para pantallas pequeñas */
  }
}



/* Sección de imágenes de negocios */
#business-images {
  padding: 50px 20px;
  background-color: #f3f2f4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='199' viewBox='0 0 100 199'%3E%3Cg fill='%23d7d5da' fill-opacity='1'%3E%3Cpath d='M0 199V0h1v1.99L100 199h-1.12L1 4.22V199H0zM100 2h-.12l-1-2H100v2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

#business-images h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

/* Ajuste de la galería */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  justify-items: center;
}

.gallery-item {
  max-width: 200px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1s ease-out forwards;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.interior-image {
  pointer-events: auto; /* Habilitar interacción */
  user-select: none; /* Evita la selección de imágenes */
  -webkit-user-drag: none; /* Desactiva el arrastre en navegadores WebKit */
}

/* Animación de aparición */
@keyframes reveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal y efectos */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #f1f1f1;
}

/* Responsivo */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 11px;
  }

  .gallery-item {
    max-width: 150px;
  }

  #business-images h2 {
    font-size: 2.0rem;
  }
}


/* Estilo para la sección de lo que ofrecemos */
#what-we-offer {
  padding: 50px 20px;
  text-align: center;
  background-color: #ed5f41;
}

#what-we-offer .container {
  max-width: 1200px;
  margin: 0 auto;
}

#what-we-offer h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offering-item {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.offering-item h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ed5f41;
}

.offering-item p {
  font-size: 16px;
  color: #555;
}

.offering-item:hover {
  transform: translateY(-5px);
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
  .offerings {
    grid-template-columns: 1fr;
  }

  @media (min-width: 480px) and (max-width: 768px) {
    .offerings {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}




/* Sección de reseñas de Google */
#google-reviews {
  background-color: #f4f4f4;
  padding: 40px 20px;
  margin-top: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#google-reviews h2 {
  text-align: center;
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

#google-reviews .elfsight-app-943b5b82-53e8-40cf-9ff5-05da06e1def6 {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

#google-reviews:hover {
  background-color: #e0e0e0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  #google-reviews {
    padding: 30px 10px;
  }

  #google-reviews h2 {
    font-size: 1.5em;
  }
}

/* Sección de marcas */
#brands {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

#brands h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

/* Cuadrícula uniforme */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.brand-item {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e0e0e0;
  opacity: 0;
  transform: translateY(30px);
}

.brand-item.visible {
  animation: brand-reveal 0.6s ease-out forwards;
}

.brand-item img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

@keyframes brand-reveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  #brands h2 {
    font-size: 1.5rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en móviles */
    gap: 50px; /* Espacio reducido entre elementos */
    padding: 0 10px; /* Ajustar padding lateral */
  }

  .brand-item {
    width: 110px;
    height: 110px;
    border: 1.5px solid #dcdcdc;
  }

  .brand-item img {
    max-width: 85%;
    max-height: 85%;
  }
}


/* Footer General */
footer {
  background-color: #403c46;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%23626065' fill-opacity='0.4'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  border-radius: 0; /* Esquinas cuadradas */
  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;
}


/* Contenido del Footer */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo y Horario */
.footer-left {
  text-align: left;
  flex: 1;
}

/* Footer logo */
.footer-logo img {
  width: 150px; /* Tamaño aumentado del logo */
  margin-left: 30px; /* Mover hacia la derecha */
}

.footer-hours {
  margin-top: 10px;
  color: #fff;
}

.footer-hours h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-hours p {
  font-size: 1rem;
  margin: 5px 0;
}

/* Redes Sociales */
.footer-socials {
  text-align: center;
  flex: 1;
}

.footer-socials h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-socials .social-icon {
  display: inline-block;
  margin: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials .social-icon i {
  margin-right: 10px;
  font-size: 1.5rem;
}

.footer-socials .social-icon:hover {
  color: #007BFF;
  transform: scale(1.1);
}

/* Información de Contacto */
.footer-contact {
  text-align: left;
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-item i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #007BFF;
}

/* Copyright */
.footer-copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ffffff;
  text-align: center;
  flex-basis: 100%;
}


/* Estilo para la nueva columna Navega en el footer */
footer .footer-navega {
  flex: 1; /* Hacer que ocupe el mismo espacio que las otras columnas */
  padding-left: 20px;
  padding-right: 20px;
}

footer .footer-navega h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

footer .footer-navega ul {
  list-style: none;
  padding: 0;
}

footer .footer-navega ul li {
  margin-bottom: 8px;
}

footer .footer-navega ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer .footer-navega ul li a:hover {
  color: #f9a825;
}



/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links ul {
    margin-top: 10px;
  }
}



/* Reset de márgenes y padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Estilo para la Announcement Bar */
.announcement-bar {
  background-color: #ed5f41;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  z-index: 20;
  width: 100%;
  position: relative;
}

/* Contenedor del header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Estilo para el logo */
header .logo img {
  max-width: 250px;
  height: auto;
  transition: width 0.3s ease;
  width: 100%;
}

/* Estilo de la barra de navegación */
nav {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f0a500;
}

/* Estilo para la sección de ubicación */
#ubicacion {
  padding: 50px 20px;
  text-align: center;
}

#ubicacion .container {
  max-width: 1200px;
  margin: 0 auto;
}

#ubicacion h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

#ubicacion p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Estilo para el mapa */
#map-container {
  width: 100%;
  height: 450px;
  margin-top: 20px;
}

#map {
  width: 100%;
  height: 100%;
}

/* Estilos para el footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 15px 0;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 150px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  display: inline;
  margin-right: 15px;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ed5f41;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links ul {
    margin-top: 10px;
  }
}


/* Estilos específicos para la página sobre-nosotros.html */
body.sobre-nosotros {
  margin: 0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Fondo de la sección principal */
body.sobre-nosotros .main-content {
  background-color: #f3f2f4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='199' viewBox='0 0 100 199'%3E%3Cg fill='%23d7d5da' fill-opacity='1'%3E%3Cpath d='M0 199V0h1v1.99L100 199h-1.12L1 4.22V199H0zM100 2h-.12l-1-2H100v2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-size: 8%;
  background-repeat: repeat;
  background-position: top left;
}

/* Contenedor principal */
body.sobre-nosotros .content-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

/* Títulos */
body.sobre-nosotros #nosotros h2 {
  font-size: 2rem; /* Tamaño reducido para móviles */
  text-align: center;
  margin-bottom: 20px;
  color: #4b4a4f;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

body.sobre-nosotros #nosotros h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #4b4a4f;
  text-align: center;
}

/* Párrafos */
body.sobre-nosotros #nosotros p {
  font-size: 0.95rem; /* Tamaño ajustado */
  line-height: 1.6; /* Espaciado adecuado */
  margin-bottom: 15px;
  background: #ffffff;
  padding: 12px 15px; /* Ajuste de padding */
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #4b4a4f;
  text-align: justify;
}

body.sobre-nosotros #nosotros p.highlight {
  font-size: 1rem;
  background: #f9a825;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Espaciado entre secciones */
body.sobre-nosotros #nosotros section {
  margin-bottom: 40px;
}

/* Animaciones */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body.sobre-nosotros #nosotros h2,
body.sobre-nosotros #nosotros h3,
body.sobre-nosotros #nosotros p {
  animation: fadeInUp 1s ease-out;
}

/* Estilo responsive para dispositivos móviles */
@media (max-width: 768px) {
  body.sobre-nosotros .content-container {
    padding: 15px; /* Espaciado reducido */
  }

  body.sobre-nosotros #nosotros h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  body.sobre-nosotros #nosotros h3 {
    font-size: 1.3rem;
    margin-top: 15px;
  }

  body.sobre-nosotros #nosotros p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 10px;
  }

  body.sobre-nosotros #nosotros p.highlight {
    font-size: 1rem;
    padding: 10px 12px;
  }
}


/* Animaciones */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

body.sobre-nosotros #nosotros h2, body.sobre-nosotros #nosotros h3, body.sobre-nosotros #nosotros p {
  animation: fadeInUp 1s ease-out;
}




/* Cambiar tamaño del ícono */
#ubicacion h2 i {
  font-size: 30px;  /* Cambiar tamaño del ícono */
  color: #4b4a4f;   /* Cambiar color del ícono */
  margin-right: 10px; /* Espaciado entre el ícono y el texto */


}


/* Cambiar tamaño del ícono */
#sobre-nosotros h2 i {
  font-size: 30px;  /* Ajusta el tamaño del ícono */
  color: #4b4a4f;   /* Cambia el color del ícono */
  margin-right: 10px; /* Añade espacio entre el ícono y el texto */
}


/* Estilos globales solo para la página de contacto */
body.contacto {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f400;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='199' viewBox='0 0 100 199'%3E%3Cg fill='%23d7d5da' fill-opacity='1'%3E%3Cpath d='M0 199V0h1v1.99L100 199h-1.12L1 4.22V199H0zM100 2h-.12l-1-2H100v2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-size: 8%;
  background-repeat: repeat;
  color: #333;
}

/* Contenedor principal */

/* Header - Sin fondo */
header.header-transparent {
  background-color: #fff;  /* Blanco para el fondo */
}

.main-content {
  padding: 40px 0;
}



.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 2px solid #f9a825; /* Borde amarillo para resaltar */
  animation: fadeInUp 1.5s ease-out;
}

/* Título principal */
#contact-page h2 {
  font-size: 2.5rem;
  color: #4b4a4f;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Sombra de texto para hacerlo más llamativo */
  animation: fadeInUp 1s ease-out;
}

/* Contacto page */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  animation: fadeInUp 1.5s ease-out;
  padding: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #4b4a4f;
  margin-bottom: 15px;
  border: 1.5px solid #f9a825;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Asegura que no se salga del contenedor */
  word-wrap: break-word; /* Evita que las palabras largas se corten */
}

.contact-item:hover {
  background-color: #f9a825;
  color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.contact-item i {
  font-size: 1.5rem;
  color: #f9a825;
}

.contact-item a {
  color: #4b4a4f;
  text-decoration: none;
  font-weight: bold;
  word-break: break-word; /* Evita cortes en palabras largas */
  overflow-wrap: break-word; /* Ajusta el correo en pantallas pequeñas */
  font-size: 1.1rem;
}

.contact-item a:hover {
  color: white;
}

/* Animación de aparición */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilo responsive para dispositivos móviles */
@media (max-width: 768px) {
  #contact-page h2 {
    font-size: 1.8rem;
  }

  .contact-item {
    font-size: 1rem;
    flex-direction: column; /* Apila el icono y el texto verticalmente */
    text-align: center;
    padding: 15px;
  }

  .contact-item i {
    font-size: 1.3rem;
  }

  .contact-item a {
    font-size: 1rem;
  }

  .content-container {
    padding: 15px;
  }

  .contact-methods {
    gap: 10px;
  }
}

/* Footer */
footer {
  background-color: #ed5f41;
  color: white;
  padding: 40px 20px;
  margin-top: 40px;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer .footer-left,
footer .footer-socials,
footer .footer-contact {
  flex: 1;
}

footer .footer-logo img {
  max-width: 180px;
}

footer h3 {
  font-size: 1.2rem; /* Reducido el tamaño del texto */
  margin-bottom: 10px;
}

footer p {
  font-size: 0.9rem; /* Reducido el tamaño del texto */
}

footer .footer-socials a {
  display: block;
  color: white;
  margin: 5px 0;
  text-decoration: none;
}

footer .footer-socials a:hover {
  color: #f9a825;
}

footer .footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .footer-contact .contact-item i {
  font-size: 1.4rem;
  color: #f9a825;
}

footer .footer-copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem; /* Reducido el tamaño del texto */
}

/* Animación de aparición en el footer */
footer .footer-content,
footer .footer-copyright {
  animation: fadeInUp 3s ease-out;
}

/* Responsividad para pantallas pequeñas */
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    align-items: center;
  }

  footer .footer-left,
  footer .footer-socials,
  footer .footer-contact {
    flex: none;
    width: 100%;
    text-align: center;
  }

  footer .footer-logo img {
    max-width: 150px; /* Ajuste de tamaño de logo */
  }

  footer .footer-copyright {
    margin-top: 30px;
  }

  footer h3 {
    font-size: 1rem;
  }

  footer p {
    font-size: 0.8rem;
  }
}


/* Estilos responsive para el header y la nav */

/* Para pantallas de hasta 768px (tabletas y móviles) */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column; /* Coloca el logo encima de los enlaces de navegación */
    align-items: center;
  }

  nav {
    padding: 10px;
    justify-content: space-between;
    gap: 0; /* Elimina la separación entre logo y enlaces */
  }

  nav ul {
    display: none; /* Oculta los enlaces de navegación por defecto */
    flex-direction: column; /* Coloca los enlaces en una columna */
    gap: 10px; /* Separación entre los enlaces */
    width: 100%; /* Asegura que ocupe todo el ancho */
    text-align: center; /* Centra los enlaces */
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #ed5f41; /* Fondo para que se vea como el menú */
    border-radius: 0 0 12px 12px; /* Redondear las esquinas inferiores */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  nav ul li {
    width: 100%; /* Asegura que los elementos del menú ocupen todo el ancho */
  }

  nav ul li a {
    padding: 10px 0; /* Espaciado dentro de los enlaces */
    font-size: 18px; /* Tamaño de fuente más grande */
  }

  nav .menu-icon {
    display: block; /* Muestra el icono del menú hamburguesa */
    cursor: pointer;
  }

  .menu-icon i {
    font-size: 30px; /* Tamaño del icono del menú */
    color: white;
  }

  nav ul.active {
    display: flex; /* Muestra los enlaces de navegación cuando se activa */
  }
}

/* Responsive para el logo(móviles) */
@media (max-width: 480px) {
  header .logo img {
    max-width: 150px; /* Ajusta el tamaño del logo en móviles muy pequeños */
  }

  nav a {
    font-size: 18px; /* Aumentar el tamaño de la fuente */
    letter-spacing: 1px; /* Añadir espaciado entre las letras */
    padding: 5px 0; /* Espaciado vertical adicional */
  }
}






