@charset "UTF-8";
.navbar {
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative; /* Asegura que el header tenga un contexto de posicionamiento */
  z-index: 1; /* Z-index bajo para que el submenú se pueda sobreponer */
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "mexica-roman";
}

.navbar-menu {
  display: none; /* Ocultar en dispositivos de escritorio */
  cursor: pointer;
}

.navbar-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links .navbar-item {
  margin: 0 15px;
}

.navbar-links .navbar-item a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-links .navbar-item a:hover,
.navbar-links .navbar-item a:focus {
  color: #fff;
  background-color: #000;
}

/* Estilos del Submenú */
.navbar-item {
  position: relative; /* Posicionamiento para submenú */
}

.submenu {
  display: none;
  position: absolute;
  left: 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 0;
  z-index: 9999; /* Asegura que el submenú se sobreponga a todo */
}

.submenu li {
  padding: 0; /* Ajusta según necesidad */
}

.submenu li a {
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.navbar-item:hover .submenu,
.navbar-item:focus-within .submenu {
  display: block; /* Muestra el submenú al pasar el ratón */
}

.submenu li a:hover {
  background-color: #f8f8f8;
}

/* Estilos Responsivos para Dispositivos Móviles */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
  .navbar-menu {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .navbar-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-links.mobile-active {
    display: flex;
  }
  .navbar-links .navbar-item {
    width: 100%;
    margin: 5px 0;
  }
  .navbar-links .navbar-item a {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .submenu {
    position: static; /* Ajuste para dispositivos móviles */
    box-shadow: none;
    border-radius: 0;
  }
}
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #121212 30%, #2c3e50 100%);
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
}

.text-container {
  max-width: 55%;
}

.header-title {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #f1f1f1;
  margin: 0 0 1.5rem;
}

.header-subtitle-h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #b3b3b3;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.header-button {
  background-color: transparent;
  border: 2px solid #f39c12; /* Color dorado para destacar */
  color: #f39c12;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header-button:hover {
  background-color: #f39c12;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(243, 156, 18, 0.4);
}

.header-logo {
  width: 250px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0px 0px 15px #f39c12);
}

.header-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0px 0px 25px #f39c12);
}

/* Keyframes for enhanced logo animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Particle Background */
@keyframes particles {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200vh);
    opacity: 0;
  }
}
.particle {
  position: absolute;
  top: 100%;
  left: calc(100% * var(--x));
  width: 4px;
  height: 4px;
  background: #f39c12;
  opacity: 0.8;
  border-radius: 50%;
  animation: particles var(--duration) linear infinite;
}

/* Responsiveness for mobile */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .text-container {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .header-logo {
    width: 180px;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
  }
  .header-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  .header-subtitle-h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  .header-button {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    align-self: center; /* Asegura que el botón esté centrado */
  }
}
@media (max-width: 480px) {
  .header-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }
  .header-logo {
    width: 150px;
    margin-bottom: 1rem;
  }
  .header-title {
    font-size: 2.1rem;
    margin-bottom: 0.8rem;
  }
  .header-subtitle-h2 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  .header-button {
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    margin-top: 1rem;
    align-self: center; /* Asegura que el botón esté centrado */
  }
}
.header-w {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  height: 100vh;
  background-color: #ffffff; /* Fondo blanco para contraste */
}

.header-content-w {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.text-container-w {
  max-width: 60%;
}

.header-title-w {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #2c3e50; /* Azul oscuro */
  margin: 0 0 1.2rem;
}

.header-subtitle-h2-w {
  font-size: 1.6rem;
  font-weight: 500;
  color: #34495e; /* Azul grisáceo */
  margin-bottom: 1rem;
}

.header-subtitle-h3-w {
  font-size: 1.1rem;
  font-weight: 400;
  color: #666; /* Gris medio para menor jerarquía */
  margin-bottom: 2rem;
  line-height: 1.6;
}

.header-logo-w {
  width: 280px;
  animation: float 5s ease-in-out infinite;
  transition: transform 0.3s;
  filter: drop-shadow(0px 0px 8px #ccc); /* Sombra suave para dar relieve */
}

.header-logo-w:hover {
  transform: scale(1.08);
}

/* Keyframes for subtle logo animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Responsiveness for tablet and mobile */
@media (max-width: 1024px) {
  .header-content-w {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }
  .text-container-w {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .header-title-w {
    font-size: 2.5rem;
  }
  .header-subtitle-h2-w {
    font-size: 1.4rem;
  }
  .header-subtitle-h3-w {
    font-size: 1rem;
  }
  .header-logo-w {
    width: 240px;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .header-content-w {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .header-title-w {
    font-size: 2.2rem;
  }
  .header-subtitle-h2-w {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .header-subtitle-h3-w {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .header-logo-w {
    width: 200px;
  }
}
@media (max-width: 480px) {
  .header-content-w {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }
  .header-title-w {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  .header-subtitle-h2-w {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  .header-subtitle-h3-w {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .header-logo-w {
    width: 180px;
    margin-bottom: 1rem;
  }
}
/* General Styles for the Services Carousel Container */
.services-header {
  padding: 3rem 1.5rem;
  background-color: #fafafa; /* Fondo claro */
  color: #2c3e50; /* Azul oscuro para texto */
}

.services-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* General Styles for the Services Carousel Container */
.services-header {
  padding: 3rem 1.5rem;
  background-color: #fafafa; /* Fondo claro */
  color: #2c3e50; /* Azul oscuro para texto */
}

.services-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Cards Container */
.services-cards-container {
  display: flex;
  gap: 1.5rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none; /* Ocultar la barra de desplazamiento para Firefox */
}

.services-cards-container::-webkit-scrollbar {
  display: none; /* Ocultar la barra de desplazamiento para Chrome, Safari y Opera */
}

/* Card Styles (Adjust according to the card component styles) */
.minimalist-card {
  flex: 0 0 auto; /* Ensure cards don't shrink */
  width: 300px; /* Fixed width for cards */
  padding: 1rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Adjust the images inside the cards */
.minimalist-card img {
  width: 80px; /* Reduce the width of the image */
  height: auto; /* Maintain aspect ratio */
  max-height: 80px; /* Limit the maximum height */
  margin-bottom: 1rem;
}

/* Carousel Buttons */
.services-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.3s;
}

.services-carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.services-left {
  left: 10px;
}

.services-right {
  right: 10px;
}

/* Mobile Styles - Show Carousel Buttons Only on Mobile */
@media (max-width: 1024px) {
  .services-carousel-button {
    width: 30px;
    height: 30px;
  }
  .services-cards-container {
    padding: 1rem 0.5rem;
  }
  .services-header {
    text-align: center;
  }
}
/* Hide Carousel Buttons on Large Screens */
@media (min-width: 1025px) {
  .services-carousel-button {
    display: none;
  }
}
/* General Contact Section Styles */
.contact-header {
  background-color: #fafafa; /* Fondo claro */
  padding: 2rem 1.5rem;
  text-align: center;
  color: #2c3e50; /* Azul oscuro para texto */
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Title Styling */
.contact-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Contact Information Styling */
.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon {
  margin-right: 0.5rem;
  color: #2c3e50; /* Azul oscuro */
}

.contact-link {
  color: #2c3e50; /* Azul oscuro */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #9c8414; /* Cambiar al color dorado al pasar el cursor */
}

/* Social Icons Styling */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  font-size: 1.5rem;
  color: #2c3e50; /* Azul oscuro */
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #9c8414; /* Cambiar al color dorado al pasar el cursor */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-title {
    font-size: 1.5rem;
  }
  .contact-info p {
    font-size: 1rem;
  }
  .social-link {
    font-size: 1.2rem;
  }
}
.header-button {
  margin-top: 1rem;
  max-width: 120px; /* Limita el ancho máximo del botón */
  width: auto; /* O puedes establecer un ancho específico */
  padding: 5px 15px; /* Reducido para un botón más compacto */
  font-size: 14px; /* Tamaño de fuente ligeramente menor */
  font-weight: 600; /* Peso de fuente semibold para preservar la legibilidad */
  color: #ffffff; /* Color de texto blanco para alto contraste */
  background-color: transparent; /* Fondo transparente para un look minimalista */
  border: 2px solid #ffffff; /* Borde blanco para una definición clara */
  border-radius: 20px; /* Bordes redondeados para suavidad, ajustado para el tamaño del botón */
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header-button:hover {
  background-color: #ffffff; /* Fondo blanco al pasar el mouse para inversión de color */
  color: #000000; /* Texto negro para mantener el contraste */
}

.header-button:active {
  background-color: #e6e6e6; /* Un gris claro al clickear para indicar acción */
  color: #000000;
}

.appleButton {
  background-color: black;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.appleButton:hover {
  background-color: #0056b3;
}

.Section-Container {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Esto alinea los elementos a la derecha */
  height: 100%;
  width: 100%; /* Asegura que el contenedor se expanda al ancho total disponible */
  border-bottom: 2px solid black;
}

/* Nuevo contenedor para el h2 para alinearlo a la derecha */
.H2-Container {
  color: aliceblue;
  width: 100%; /* Ajustado para ocupar todo el ancho y no limitarlo al 25% */
  display: flex; /* Asegúrate de usar display: flex para aplicar justify-content */
  justify-content: flex-end; /* Esto alineará el contenido a la derecha */
  padding-right: 10px;
}

.Logos-Container {
  background-color: aliceblue;
  display: flex;
  justify-content: space-around; /* Mantiene los logos distribuidos equitativamente */
  width: 100%; /* Asegura que los logos usen todo el ancho disponible */
}

.section-logo {
  width: 5rem; /* Asegúrate de que el tamaño de los logos sea consistente */
  /* Si necesitas que .world-logo tenga un tamaño diferente, ajusta esta clase por separado */
}

.world-logo {
  width: 7rem;
}

.minimal-footer {
  background-color: #fff; /* Fondo blanco para un look limpio */
  color: #333; /* Texto oscuro para contraste */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 10px 0; /* Reducido para menos altura */
  text-align: center;
  border-top: 1px solid #eaeaea; /* Una línea sutil para separar el footer */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-links {
  margin-top: 5px; /* Menos espacio arriba */
}

.footer-links a {
  color: #333;
  text-decoration: none;
  margin: 0 10px; /* Espaciado horizontal ligeramente reducido entre enlaces */
  font-size: 14px; /* Tamaño de fuente reducido para menos altura */
}

.footer-links a:hover {
  text-decoration: underline; /* Subraya los enlaces al pasar el mouse para mejorar la interactividad */
}

.text-container-nosotros {
  text-align: start;
  width: 50%;
  padding: 20px; /* Añade algo de relleno para no tener el texto pegado a los bordes */
}

.text-container-nosotros h1 {
  font-size: 2em; /* Tamaño de fuente grande para el encabezado */
  color: #1d1d1f; /* Un negro casi completo, para darle importancia al título */
  margin-bottom: 0.5em; /* Reduce el margen inferior para acercar el título al párrafo */
}

.text-container-nosotros p {
  text-align: left;
  font-size: 1em; /* Mantén el tamaño de fuente del párrafo a un nivel legible pero no demasiado grande */
  color: #6e6e73; /* Un gris más claro para el texto del párrafo, mejora la legibilidad */
  line-height: 1.6; /* Aumenta el interlineado para mejorar la legibilidad */
}

.header-nosotros {
  width: 100%;
  background-color: #f8f8f7; /* Usa el mismo color de fondo que el cuerpo para un diseño cohesivo */
  padding: 40px 20px; /* Aumenta el relleno para dar más espacio */
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hace la sombra un poco más prominente para darle profundidad */
}

.header-content-nosotros {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Cambia a 'space-between' para distribuir el espacio igualmente */
  max-width: 1200px; /* Limita el ancho máximo para no tener líneas de texto demasiado largas */
  margin: auto; /* Centra el contenido */
}

.header-logo-nosotros {
  /* Elimina el width auto para controlar el tamaño directamente */
  height: auto; /* Cambia a auto para mantener la proporción según el ancho especificado */
  max-width: 200px; /* Establece un ancho máximo más grande */
  max-height: 150px; /* Establece una altura máxima para controlar el tamaño y mantener la proporción */
  margin: 0 20px; /* Mantén los márgenes para un adecuado espaciado */
}

/* Opcional: Si quieres que uno de los logos sea más grande que el otro, puedes especificar tamaños diferentes */
@keyframes rotateLogo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header-logo-world {
  height: auto; /* Cambia a auto para mantener la proporción según el ancho especificado */
  max-width: 200px; /* Establece un ancho máximo más grande */
  max-height: 150px; /* Establece una altura máxima para controlar el tamaño y mantener la proporción */
  margin: 0 20px; /* Mantén los márgenes para un adecuado espaciado */
  animation: rotateLogo 10s linear infinite;
}

@media (max-width: 768px) {
  .header-logo-nosotros, .header-logo-world {
    display: none; /* Oculta las imágenes en pantallas pequeñas */
  }
  .text-container-nosotros {
    width: 100%; /* Permite que el contenedor de texto ocupe todo el ancho disponible */
    padding: 20px; /* Mantiene el relleno para el texto */
  }
  .header-content-nosotros {
    flex-direction: column; /* Cambia la disposición a vertical */
    text-align: center; /* Asegura que el texto esté centrado */
  }
}
.servicesPage {
  font-family: Arial, sans-serif;
  color: #333;
  padding: 60px 20px;
  background-color: #f8f9fa; /* Cambiar el color de fondo */
}

.heroSection h1 {
  font-size: 2.5rem; /* Aumentar el tamaño del título */
  color: #1d1d1f;
}

.heroSection p {
  font-size: 1.1rem; /* Aumentar el tamaño del texto */
  color: #6e6e73;
  max-width: 800px;
  margin: 20px auto;
  text-align: center; /* Centrar el texto */
}

.servicesSection {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.serviceCard {
  width: 350px; /* Aumenta el ancho de las tarjetas */
  min-height: 400px;
  height: auto; /* Permite que la altura se ajuste al contenido */
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribuye el contenido verticalmente */
}

.serviceCard:hover {
  transform: scale(1.1); /* Desplazar ligeramente hacia arriba al pasar el cursor */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Aumentar la sombra */
}

.serviceIcon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block; /* Asegurar que el icono esté centrado verticalmente */
  margin: 0 auto 20px; /* Centrar el icono horizontalmente */
}

.serviceCard h3 {
  margin-top: 0;
  font-size: 1.5rem; /* Aumentar el tamaño del título */
  color: #1d1d1f;
}

.serviceCard p {
  font-size: 1rem; /* Aumentar el tamaño del texto */
  color: #6e6e73;
  line-height: 1.5; /* Ajustar el interlineado */
}

/* Agregando media query para ajustar la imagen en pantallas pequeñas */
@media (max-width: 768px) {
  .servicesSection {
    flex-direction: column; /* Cambia a columna para apilamiento vertical */
  }
  .serviceCard {
    width: 100%; /* Ocupa todo el ancho disponible */
    /* Opcional: Si quieres que la primera tarjeta sea diferente */
    /* Esto no afecta el tamaño, solo como una referencia para posibles estilos específicos */
  }
  .serviceCard:first-child {
    min-height: 100vh; /* Hace que la primera tarjeta ocupe toda la altura de la pantalla */
  }
  .serviceIcon {
    width: 100%; /* Hace que la imagen ocupe todo el ancho disponible */
    height: auto; /* Ajusta la altura automáticamente para mantener la proporción */
  }
}
.investigacion-page {
  background-color: #f8f9fa; /* Color de fondo similar al de Apple */
}

.header-investigacion {
  background-color: #ffffff; /* Fondo blanco */
  padding: 20px;
  text-align: center; /* Centrar contenido */
}

.header-logo-investigacion {
  max-width: 100%; /* Ancho máximo */
  height: auto; /* Altura automática para mantener la proporción */
  display: block; /* Para centrar horizontalmente */
  margin: 0 auto 20px; /* Centrar horizontalmente y agregar margen inferior */
}

.intro-section,
.opensource-section {
  padding: 50px 20px; /* Espaciado interior */
  text-align: center; /* Centrar texto */
}

.intro-content,
.opensource-content {
  max-width: 800px; /* Ancho máximo del contenido */
  margin: 0 auto; /* Centrar horizontalmente */
}

.intro-content h2,
.opensource-content h2 {
  font-size: 2.5rem; /* Tamaño de título */
  color: #333333; /* Color de texto */
}

.intro-content p,
.opensource-content p {
  font-size: 1.2rem; /* Tamaño de texto */
  color: #666666; /* Color de texto secundario */
  line-height: 1.6; /* Altura de línea */
}

.footer {
  background-color: #ffffff; /* Fondo blanco */
  padding: 20px;
  text-align: center; /* Centrar texto */
  box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1); /* Sombra ligera */
}

.footer-content {
  color: #666666; /* Color de texto secundario */
}

.middle-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.planet-image {
  max-width: 200px; /* Ajusta el ancho máximo de la imagen según sea necesario */
  height: auto; /* Para mantener la proporción de la imagen */
}

.blogPage {
  background-color: #fff;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  padding: 48px;
  max-width: 1000px;
  margin: auto;
}

.blogPageTitle {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.blogPost {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eaeaea; /* Añade una línea sutil para separar los posts */
}

.blogPostHeader {
  margin-bottom: 20px;
}

.blogPostCategory {
  color: #6e6e73;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.05em; /* Añade espaciado entre letras para la categoría */
}

.blogPostTitle {
  font-size: 28px;
  margin: 10px 0 20px;
  font-weight: bold;
}

.blogPostContent p {
  font-size: 18px; /* Aumenta el tamaño del texto para mejorar la legibilidad */
  margin: 0;
}

@media (max-width: 768px) {
  .blogPage {
    padding: 24px;
  }
  .blogPageTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .blogPostTitle {
    font-size: 24px;
  }
  .blogPostContent p {
    font-size: 16px;
  }
}
.blogPostMeta {
  font-size: 0.9rem;
  color: #6e6e73;
  margin-bottom: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "robotolight", sans-serif;
}

@font-face {
  font-family: "robotolight";
  src: url("../src/assets/fonts/Roboto-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mexica-roman";
  src: url("../src/assets/fonts/Mexica-Roman.woff2") format("woff2"), url("../src/assets/fonts/Mexica-Roman.woff") format("woff"), url("../src/assets/fonts/Mexica-Roman.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mexica-black";
  src: url("../src/assets/fonts/Mexica-Black.woff2") format("woff2"), url("../src/assets/fonts/Mexica-Black.woff") format("woff"), url("../src/assets/fonts/Mexica-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/*# sourceMappingURL=index.css.map */
