/* Definir la variable de color */
:root {
    --color-principal: #0C070F;  /* Azul */
    --color-secundario: #EA9E1A; /* Verde */
    --color-terciario: #414059;
  }
  

  html {
    box-sizing: border-box;
  }
  *, *::before, *::after {
    box-sizing: inherit;
  }
  
  body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background-color: #fefaf1; /* blanco hueso */
    font-family: "MuseoModerno", sans-serif;
  }
  
  /* Barra de navegación */
.navbar {
    background-color: rgba(0, 0, 0, 0); /* Fondo transparente */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
  }
  .navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8); /* Fondo sólido al hacer scroll */
 
  }
  
  
  .navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  .navbar li {
    display: inline;
  }
  
  .navbar a {
    color: white;
    /*padding: 14px 20px;*/
    padding: 1rem 1.25rem;
    text-decoration: none;
    display: inline-block;
  }
  
  .navbar a:hover {
    color: var(--color-secundario);
  }
  .scroll-button {
    text-align: center;
    margin-top: -2.5rem;
    position: relative;
    z-index: 5;
  }
  
  .btn-scroll img {
    width: 2.5rem; /* tamaño del ícono */
    height: auto;
    transition: transform 0.4s ease;
    cursor: pointer;
  }
  
  .btn-scroll img:hover {
    transform: scale(1.2);
  }
  
  
  .contenedor-spline {
    width: 100%;
    height: 100vh; /* altura de toda la pantalla */
    position: relative;
    overflow: hidden;
  }
  
  .contenedor-spline iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    display: block;
  }

  
  /* Estilos del contenido */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 1.25rem;
    font-family: "MuseoModerno", sans-serif;
  }
.container h1{
  font-family: "MuseoModerno", sans-serif;
  text-align: center;
  color:var(--color-secundario);
}
  .content {
    display: flex;
    justify-content: space-between; /* Alinea el texto a la izquierda y la imagen a la derecha */
    align-items: flex-start;
    width: 100%;
  }
  
  
  .text-section {
    align-items: center;
    width: 50%; /* Esto permite que el texto ocupe un 60% del contenedor */
  }
  
  
  img {
    width: 100%;
    max-width: 31.25rem;
    border-radius: 1.25rem;
  }
  
  
  .content img{
    width: 50%;
    height: 50vh;
  }
  /*PROJECT*/
  #projects,#social-media {
    text-align: center;
    padding: 2rem;
  }
  
  .circle-row {
    display: flex;
    justify-content: center;
    gap: 1.25rem; /* espacio entre círculos */
    margin-top: 2rem;
    flex-wrap: wrap; /* permite que se ajusten en pantallas pequeñas */
  }
  #projects .circle {
    width: 12.5rem;
    height: 12.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    background-color: var(--color-principal);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  #social-media .circle {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    background-color: var(--color-terciario);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .circle img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    cursor: pointer;
  }
  
  
  /*BOTON UP*/
  .btn-up {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background-color: var(--color-principal);
    color: white;
    padding: 0.438rem 0.625rem ;
    border-radius: 50%;
    text-decoration: none;
    display: none; /* Oculto por defecto */
    z-index: 9999;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .btn-up img {
    width: 2.5rem; /* tamaño del ícono */
    height: auto;
    transition: transform 0.4s ease;
    cursor: pointer;
  }
  .btn-up img:hover {
    transform: scale(1.2);
  }
  

/*FOOTER*/
  .footer {
    margin-top: 3.125rem;
    background-color: var(--color-principal); /* Fondo oscuro */
    font-family: "MuseoModerno", sans-serif;
    color: white; /* Texto blanco */
    justify-content: center;
    align-items: center;
    text-align: center; /* Centrado del texto */
   width: 100%;
    padding: 1.25rem; /* Espaciado alrededor */
    font-size: 0.8rem; /* Tamaño de fuente pequeño */
  }
  .footer #quote{
   
    color: var(--color-secundario);
  
  }
 
  .footer p {
    margin-top: 1rem; /* Elimina los márgenes predeterminados */
  }
  .footer .row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem; /* Espacio entre los elementos */
  }  
  
  @media (max-width: 850px) {
    .navbar ul {
      
     font-size: 1rem;
    }
  

    .content {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  .text-section{
    width: 100%;
  }
    .text-section,
    .content img {
      width: 100%;
      height: auto;
    }
  .contenedor-spline{
    width: 100%;
  }

  
    button {
      width: 100%;
      padding: 1rem 1rem;
      margin-bottom: 2rem;
      font-size: 1.2rem;
    }
  
    .container {
      width: 100%;
      padding: 0.625rem;
    }
    .footer{
      width: 100%;
    }
  }
  /* Media Query para dispositivos muy pequeños (por ejemplo, teléfonos antiguos) */
  @media screen and (max-width: 480px) {
    .contenedor-spline {
      width: 100%;
      height: 100vh; /* altura de toda la pantalla */
      background-color: black;
      display: flex;
      align-items: center;     /*centra verticalmente*/
    }
    
    .contenedor-spline iframe {
      width: 100vw;
      height: 50vh;
    }
  
    .navbar a {
      padding: 0.25rem 0.5rem; /* Ajustar el padding de los enlaces en el navbar */
      font-size: 1rem;
    }
    .btn-scroll img {
      width: 2rem; /* tamaño del ícono */
 
    }
  .btn-up{
    bottom: 1rem;
    right: 1rem;
    padding: 0.25rem 0.438rem ;
  }

  .btn-up img {
    width: 2rem; /* tamaño del ícono */
  }
  
    .footer {
 
      font-size: 0.75rem; /* Ajuste aún más pequeño en dispositivos pequeños */
    }
  }