 /* Reset básico */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body,
      html {
        font-family: "Roboto", sans-serif;
        margin: 0;
        padding: 0;
        color: #ffffff;
        background-color: #1c1c1c;
        overflow-x: hidden;
      }

      img,
      video,
      iframe,
      object,
      embed {
        max-width: 100%;
        height: auto;
      }

      header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, #1c1c1c, #333);
        color: white;
        padding: 20px 0;
      }

      header img {
        height: 300px;
        margin-bottom: 20px;
        max-width: 100%;
      }

      nav {
        display: flex;
        gap: 30px;
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
      }

      nav a {
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        transition:
          color 0.3s ease,
          transform 0.3s ease;
      }

      nav a:hover {
        color: #ff8243;
        text-decoration: underline;
        transform: scale(1.05);
      }

      .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
      }

      .main-banner {
        text-align: center;
        padding: 190px 10px;
        background: url("assets/images/cabecera.png") no-repeat center
          center/cover;
        position: relative;
      }
      .main-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(28, 28, 28, 0.7);
      }

      .main-banner h1 {
        font-size: 48px;
        color: #ff8243;
        position: relative;
        z-index: 1;
        animation: burn 5s infinite;
      }

      .main-banner p {
        font-size: 20px;
        margin: 40px 0;
        color: #b0b0b0;
        position: relative;
        z-index: 1;
      }

      .main-banner button {
        background-color: #ff6a1a;
        color: white;
        padding: 15px 30px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 18px;
        font-weight: bold;
        transition:
          background-color 0.3s ease,
          transform 0.3s ease;
        position: relative;
        z-index: 1;
      }

      .main-banner button:hover {
        background-color: #c26d4d;
        transform: scale(1.05);
      }

      .about-us {
        padding: 80px 20px;
        text-align: center;
        background: center center/cover;
        position: relative;
      }

      .about-us::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(28, 28, 28, 0.8);
      }

      .about-us h2 {
        font-size: 36px;
        color: #ff8243;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
      }

      .about-us p {
        font-size: 18px;
        line-height: 1.6;
        color: #b0b0b0;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  position: relative;
}
.about-wrapper p {
  font-size: 18px;
  color: #c2c2c2;
  line-height: 1.7;
}


      .services {
        padding: 80px 20px;
        background-color: #1c1c1c;
      }

      .services h2 {
        font-size: 36px;
        color: #ff8243;
        text-align: center;
        margin-bottom: 40px;
      }

.service-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 30px;
  background: linear-gradient(135deg, #2c2c2c, #1c1c1c);
  border-radius: 20px;
  border: 1px solid rgba(255, 130, 67, 0.1);
  box-shadow: 0 0 20px rgba(255, 130, 67, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-container:hover {
  transform: scale(1.015);
  box-shadow: 0 0 30px rgba(255, 130, 67, 0.25);
}

.service-container:nth-child(even) {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
  font-size: 16px;
  color: #b0b0b0;
}

.service-text h3 {
  font-size: 26px;
  color: #ff935f;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(255, 102, 0, 0.2);
}

.service-text p {
  font-size: 17px;
  color: #c2c2c2;
  line-height: 1.7;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-image img {
  max-width: 220px;
  border-radius: 12px;
  filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
}


      .pricing {
        padding: 80px 20px;
        text-align: center;
        background-color: #2c2c2c;
      }

      .pricing h2 {
        font-size: 36px;
        color: #ff8243;
        margin-bottom: 40px;
      }

      .plan {
        display: inline-block;
        margin: 20px;
        padding: 20px;
        background-color: #1c1c1c;
        border-radius: 15px;
        width: 250px;
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
      }

      .plan:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }

      .plan h3 {
        font-size: 24px;
        color: #ff8243;
        margin-bottom: 15px;
      }

      .plan p {
        font-size: 18px;
        color: #b0b0b0;
        margin-bottom: 20px;
      }

      .plan button {
        background-color: #ff8243;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        transition:
          background-color 0.3s ease,
          transform 0.3s ease;
      }

      .plan button:hover {
        background-color: #ff6f3d;
        transform: scale(1.05);
      }
.plan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.plan ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #b0b0b0;
}
.plan.destacado {
  border: 2px solid #ff8243;
  box-shadow: 0 0 15px rgba(255, 130, 67, 0.3);
}

      .contact {
        padding: 80px 20px;
        text-align: center;
        background-color: #1c1c1c;
      }

      .contact h2 {
        font-size: 36px;
        color: #ff8243;
        margin-bottom: 40px;
      }

      .contact form {
        max-width: 600px;
        margin: 0 auto;
        background-color: #2c2c2c;
        padding: 20px;
        border-radius: 15px;
      }

      .contact input,
      .contact textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        background-color: #1c1c1c;
        color: #b0b0b0;
      }

      .contact button {
        background-color: #ff8243;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        transition:
          background-color 0.3s ease,
          transform 0.3s ease;
      }

      .contact button:hover {
        background-color: #ff6f3d;
        transform: scale(1.05);
      }

      footer {
        text-align: center;
        padding: 40px 20px;
        background-color: #1a1a1a;
        color: white;
      }

      footer p {
        margin: 0;
        font-size: 16px;
      }

      .social-links {
        margin-top: 10px;
      }

      .social-links img {
        width: 24px;
        margin: 0 10px;
        transition: transform 0.3s ease;
      }

      .social-links img:hover {
        transform: scale(1.2);
      }

      #scrollToTop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #ff8243;
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 20px;
        cursor: pointer;
        display: none;
        transition: background-color 0.3s ease;
      }

      #scrollToTop:hover {
        background-color: #ff6f3d;
      }

      @keyframes burn {
        0% {
          color: #ff8243;
          text-shadow:
            0 0 5px #ff8243,
            0 0 10px #ff8243,
            0 0 20px #ff8243;
        }
        50% {
          color: #ff4500;
          text-shadow:
            0 0 10px #ff4500,
            0 0 20px #ff4500,
            0 0 40px #ff4500;
        }
        100% {
          color: #ff8243;
          text-shadow:
            0 0 5px #ff8243,
            0 0 10px #ff8243,
            0 0 20px #ff8243;
        }
      }

      @media (max-width: 768px) {
        .menu-toggle {
          display: block;
        }
        nav {
          display: none;
          flex-direction: column;
          gap: 10px;
        }
        nav.active {
          display: flex;
        }
        h1 {
          font-size: 36px;
        }
        h2 {
          font-size: 28px;
        }
        p {
          font-size: 16px;
        }
        .service-container {
          flex-direction: column;
          text-align: center;
        }
        .service-container:nth-child(even) {
          flex-direction: column;
        }
        .service-image img {
          max-width: 100%;
        }
        .plan {
          width: 100%;
          margin: 10px 0;
        }
      }