  /* General Styles */
  body {
      margin: 0;
      padding: 0;
      background-color: #0b022a;
      font-family: 'Raleway', sans-serif;
  }

  *::selection {
      outline: none;
  }

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

  /* burbuja inicio */
  .scroll-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FAFAFA;
      /* Color de fondo de la burbuja */
      border-radius: 50%;
      /* Para hacer la burbuja circular */
      padding: 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      /* Sombra para efecto de profundidad */
      text-align: center;
      cursor: pointer;
      z-index: 1000;
      /* Asegura que esté por encima de otros elementos */
      transition: background-color 0.3s ease;
      /* Animación al pasar el ratón */
  }

  .scroll-to-top img {
      width: 24px;
      /* Ajusta el tamaño del icono */
      height: 24px;
  }


  /* portafolio */

  .portafolio {
      margin-bottom: 40px;
  }

  .portafolio h4 {
      text-align: center;
      font-weight: 400;
      font-size: 60px;
      color: #fdfdfd;
      letter-spacing: 1.2px;
  }

  .portafolio-img {
      border-radius: 50%;
      width: 100px;
      height: 100px;
      object-fit: cover;
      margin-bottom: 10px;
      border: 2px solid #EBA675;
      /* Borde opcional */
  }

  .portafolio-item {
      background-color: #FDFAF0;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 250px;
      text-align: center;
      transition: transform 0.3s ease;
  }

  .portafolio-item:hover {
      transform: scale(1.05);
  }

  /* About Section */
  .about-section {
      margin-bottom: 40px;
  }

  .about-section h4 {
      text-align: center;
      font-weight: 400;
      font-size: 60px;
      color: #fdfdfd;
      letter-spacing: 1.2px;
  }

  .team-description {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
  }

  .team-description p {
      font-size: 18px;
      line-height: 1.6;
      color: #fff;
  }

  .goals {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin-top: 40px;
  }

  .goal {
      flex: 1 1 300px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin: 10px;
      text-align: center;
  }

  .goal h3 {
      color: #010c1d;
      font-size: 20px;
      margin-bottom: 10px;
  }

  .goal p {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
  }

  /* Footer */
  .footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Espacio entre la imagen y el texto */
}

.container img {
    width: 50px;
    height: 50px;
}

.container p {
    margin: 0; /* Elimina el margen por defecto del párrafo */
}


  .back-to-top {
      display: inline-block;
      margin-top: 20px;
  }

  .back-to-top img {
      width: 50px;
      height: 50px;
  }

  /* Menu */
  .menu {
      margin: 0;
      padding: 0;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #12151b;
      z-index: 999;
      text-align: center;
      height: 70px;
      line-height: 70px;
  }

  .menu a {
      text-decoration: none;
      color: #e2dada;
      margin: 10px 60px;
      line-height: 50px;
      letter-spacing: 7px;
      text-transform: uppercase;
      transition: all 270ms ease;
      font-weight: bold;
  }

  .menu a:hover {
      color: #fff;
  }

  .menu h5 {
      margin: 0 30px;
      text-transform: uppercase;
      float: left;
      font-weight: 300;
      font-size: 25px;
      letter-spacing: 2px;
      position: relative;
      z-index: 999;
      color: #FEFFFF;
  }

  label {
      margin: 0 20px 0 0;
      font-size: 26px;
      line-height: 70px;
      display: none;
      width: 26px;
      float: right;
      color: #354757;
  }

  #toggle {
      display: none;
  }

  .fixed {
      background-color: #FEFFFF;
  }

  /* Photo Section */
  .photo {
      width: 100%;
      height: 700px;
      background-size: cover;
      background-position: center;
  }

  .photo-text {
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .photo h4 {
      font-size: 60px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: #FEFFFF;
      margin: 10px;
      cursor: pointer;
      position: relative;
      z-index: 998;
  }

  .photo p {
      width: 60%;
      text-align: center;
      letter-spacing: 1.5px;
      color: #D7DADE;
      position: relative;
      z-index: 998;
  }

  /* Content */
  .content {
      width: 100%;
      min-height: 800px;
      position: relative;
      z-index: 1;
  }

  .content:before {
      width: 50%;
      height: 110px;
      position: absolute;
      top: -48px;
      left: 0;
      background-color: #FEFFFF;
      transform: skewY(5.5deg);
  }

  .content:after {
      width: 70%;
      height: 120px;
      position: absolute;
      top: -48px;
      right: 0;
      background-color: #001616;
      transform: skewY(-5.5deg);
  }

  .grand-title {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 999;
      width: 60%;
      min-height: 100px;
      padding: 0;
      margin: 0 auto;
  }

  .grand-title h4 {
      text-align: center;
      font-size: 80px;
      font-weight: 200;
      letter-spacing: 1.7px;
      margin: 30px;
      color: #ffffff;
  }

  .grand-title h4:after {
      content: '';
      display: block;
      width: 5%;
      height: 3px;
      margin: 25px auto;
      border: 0;
      background: #E58859;
  }

  .text {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-top: -10px;
      position: relative;
      z-index: 999;
  }

  .inner-text {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: column wrap;
      padding: 20px;
      width: 300px;
      height: 300px;
      margin: 10px;
      transition: all 450ms ease;
      color: #6D85A8;
      box-shadow: 0px 0px 20px rgba(235, 166, 117, 0.5);
      border-radius: 5px;
  }

  .inner-text:hover {
      cursor: pointer;
      box-shadow: -1px 6.5px 15px rgba(208, 211, 214, 0.75), 0px 0px 20px rgba(235, 166, 117, 0.7);
  }

  .ic {
      font-size: 35px;
      color: #EBA675;
      transition: all 250ms ease;
  }

  .ic:hover {
      opacity: .7;
  }

  .inner-text h3 {
      color: #209aff;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 1.2px;
      margin-top: 0;
      margin-bottom: 10px;
  }

  .inner-text h5 {
      color: #6D85A8;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin: 0;
  }

  .inner-text p {
      color: #6D85A8;
      margin-top: 0;
  }

  .inner-content {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 450px;
  }

  .boxy {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 100%;
      height: 50vh;
  }

  .boxy:nth-child(1) {
      width: 50%;
      min-height: 600px;
      background: url('http://img.fenixzone.net/i/dxmDY9u.png') bottom no-repeat;
      background-size: cover;
      position: relative;
      z-index: 999;
  }

  .boxy:nth-child(2) {
      width: 50%;
      min-height: 600px;
      display: flex;
      align-items: center;
  }

  /* Slider */
  #slider {
      overflow: hidden;
      position: relative;
  }

  #slider div {
      width: 100%;
      height: 100vh;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      animation: slide-animation 30s infinite alternate linear;
      position: absolute;
      left: 0;
      top: 0;
  }

  #slider div:nth-child(1) {
      background-image: url('ruta/a/tu/imagen.jpg');
      animation-delay: 0s;
  }

  #slider div:nth-child(2) {
      background-image: url('ruta/a/tu/imagen2.jpg');
      animation-delay: 10s;
  }

  #slider div:nth-child(3) {
      background-image: url('ruta/a/tu/imagen3.jpg');
      animation-delay: 20s;
  }

  @keyframes slide-animation {
      0% {
          left: 0%;
      }

      25% {
          left: 0%;
      }

      33.3% {
          left: -100%;
      }

      58.3% {
          left: -100%;
      }

      66.6% {
          left: -200%;
      }

      100% {
          left: -200%;
      }
  }

  /* Slide Captions */
  .caption {
      text-align: center;
      position: absolute;
      top: 43%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
      z-index: 1;
      font-size: 48px;
      font-weight: bold;
  }

  .caption h1 {
      font-size: 70px;
      letter-spacing: 1.2px;
      color: #FEFFFF;
      text-transform: uppercase;
      font-weight: 300;
  }

  .caption p {
      font-size: 20px;
      margin: 10px 0 0;
  }

  /* Explore Section */
  .explore-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 15px 40px;
      background-color: #EBA675;
      color: #000;
      text-decoration: none;
      font-size: 20px;
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 5px;
      transition: background-color 0.3s;
  }

  .explore-btn:hover {
      background-color: #c87a5a;
  }