:root {
      --orange: #ff7f00;
      --dark-bg: #0f0f10;
      --light-text: #f2f2f2;
      --accent: #ffae42;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--light-text);
      background: radial-gradient(circle at top right, #1c1c1e, var(--dark-bg));
      line-height: 1.6;
    }

    header {
      background: linear-gradient(145deg, var(--orange), var(--accent));
      color: white;
      padding: 4rem 2rem;
      text-align: center;
      animation: fadeIn 1s ease-out;
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    header p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
    }

    .btn-cta {
      background: #fff;
      color: var(--orange);
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.2s, background 0.3s;
    }

    .btn-cta:hover {
      transform: scale(1.05);
      background: var(--light-text);
    }

    section {
      padding: 3rem 2rem;
      max-width: 1000px;
      margin: auto;
      animation: slideUp 1s ease-in-out;
    }

    h2 {
      color: var(--orange);
      font-size: 2rem;
      margin-bottom: 1rem;
    }

/* Base styles */
.navbar {
  background-color: #1f1f1f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Segoe UI', sans-serif;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6em;
  font-weight: bold;
  color: #f47c23;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 1.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: linear-gradient(45deg, #f47c23, #ffb347);
  color: #fff;
  box-shadow: 0 0 10px #f47c23aa;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 1.5em;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background-color: #1f1f1f;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
    padding: 10px;
    border-radius: 0 0 8px 8px;
  }

  .nav-links.show {
    display: flex;
  }
}

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }

    .stat-item {
      background: #1c1c1e;
      border-left: 4px solid var(--orange);
      padding: 1rem;
      border-radius: 10px;
      transition: transform 0.2s;
    }

    .stat-item:hover {
      transform: translateY(-5px);
    }

    .faq-item {
      margin-bottom: 1.5rem;
      background: #1c1c1e;
      padding: 1rem;
      border-radius: 10px;
    }

.footer {
  background: linear-gradient(145deg, #1b1b1b, #111);
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 3px solid #f47c23;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  padding-bottom: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 300px;
}

.footer-left {
     flex: 1 1 300px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  height: 75px;
  width: auto;
}

#footer-quote {
  font-size: 1.1em;
  color: #f47c23;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.footer-left p {
  font-size: 1.1em;
  color: #f47c23;
  margin-bottom: 10px;
}

.footer-center a {
  display: inline-block;
  margin: 5px 10px;
  text-decoration: none;
  color: #ccc;
  font-size: 1em;
  transition: color 0.3s;
}

.footer-center a:hover {
  color: #f47c23;
}

.footer-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-right span {
  color: #f47c23;
  font-weight: bold;
  margin-right: 10px;
}

.footer-right img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: white;
  border-radius: 6px;
  padding: 4px;
  transition: transform 0.3s ease;
}

.footer-right img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  text-align: center;
}

.footer-social a {
  color: #f47c23;
  font-size: 1.4em;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s;
}

.footer-social a:hover {
  color: white;
  transform: scale(1.2);
}

.footer-bottom p {
  color: #888;
  font-size: 0.9em;
  margin-top: 10px;
}

.footer-bottom a {
  color: #f47c23;
  text-decoration: underline;
}
    
    
    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    @keyframes slideUp {
      from {transform: translateY(40px); opacity: 0;}
      to {transform: translateY(0); opacity: 1;}
    }

    /* Responsive Tweaks */
    @media (max-width: 600px) {
      header h1 {
        font-size: 1.8rem;
      }

      .btn-cta {
        width: 100%;
        display: inline-block;
      }
    }
    
.work-history {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
  animation: fadeIn 1s ease-out;
}

.work-history h2 {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 30px;
  border-left: 3px solid var(--orange);
}

.timeline::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  bottom: 0;
  width: 16px;
  background: linear-gradient(to bottom, var(--orange), transparent 70%);
  z-index: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1rem;
  animation: slideUp 0.8s ease forwards;
  opacity: 0;
}

.timeline-item:nth-child(odd) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(even) {
  animation-delay: 0.4s;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: var(--orange);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px var(--orange);
}

.timeline-date {
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.timeline-content h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--light-text);
}

.timeline-content p {
  font-size: 0.95rem;
  color: #bbb;
  margin-top: 0.3rem;
}



 .faqs {
   
    color: #ddd;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .faqs h2 {
    text-align: center;
    color: #f47c23;
    font-size: 2.8em;
    margin-bottom: 40px;
    font-family: 'Segoe UI', sans-serif;
  }

  .faq-item {
    margin: 20px 0;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #f47c23;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .faq-item:hover {
    background-color: #444;
    transform: translateY(-5px);
  }

  .faq-question {
    font-size: 1.6em;
    color: #f47c23;
    cursor: pointer;
    margin: 0;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  .faq-question:hover {
    color: #fff;
  }

  .faq-answer {
    font-size: 1.1em;
    display: none;
    margin-top: 10px;
    color: #ccc;
    line-height: 1.5;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding-left: 10px;
    font-style: italic;
  }

  .faq-item.active .faq-answer {
    display: block;
    opacity: 1;
    max-height: 500px;
  }

  /* Add transition effects for a smoother expansion */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
  }

  .faq-item i {
    color: #f47c23;
    font-size: 1.3em;
    margin-right: 10px;
  }

  .faq-item .faq-answer i {
    font-size: 1.2em;
    opacity: 0.8;
  }
  
 /* Contenedor principal */
.app-presentation {
  background-color: #0f0f10;
  padding: 60px 20px;
  color: #ddd;
   border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.app-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.app-description {
  flex: 1 1 400px;
}

.app-description h3 {
  font-size: 2em;
  color: #f47c23;
  margin-bottom: 15px;
}

.app-description p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #ccc;
}

.app-image {
  flex: 1 1 300px;
  text-align: center;
}

.app-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  transition: transform 0.3s ease;
}

.app-image img:hover {
  transform: scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .app-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .app-description h3 {
    font-size: 1.6em;
  }

  .app-description p {
    font-size: 1em;
  }

  .app-image img {
    max-width: 220px;
  }
}
/* Efecto de parallax */
.app-presentation {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s, opacity 0.4s;
}

.app-presentation.fade-in {
  transform: translateY(20px);
  opacity: 0;
}

/* Animación de desvanecimiento en el scroll */
@keyframes fadeInApp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
} 


.privacy {
  background-color: #1b1b1b;
  color: #ddd;
  padding: 50px 30px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 10px;
}

.privacy h2 {
  font-size: 2.5em;
  color: #f47c23;
  text-align: center;
  margin-bottom: 40px;
}

.privacy .intro {
  font-size: 1.15em;
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h3 {
  color: #f47c23;
  font-size: 1.4em;
  margin-bottom: 15px;
  border-left: 4px solid #f47c23;
  padding-left: 10px;
}

.privacy-section p {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.privacy-section ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 10px;
}

.privacy-section ul li {
  margin-bottom: 6px;
  font-size: 1.05em;
}

.privacy .contact {
  text-align: center;
  font-size: 1.1em;
  margin-top: 30px;
}

.privacy .contact a {
  color: #f47c23;
  text-decoration: underline;
}

.terms {
  background-color: #1c1c1c;
  color: #ddd;
  padding: 60px 30px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 12px;
  line-height: 1.7;
}

.terms h2 {
  text-align: center;
  font-size: 2.8em;
  color: #f47c23;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.terms h3 {
  color: #f47c23;
  font-size: 1.4em;
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 4px solid #f47c23;
  padding-left: 10px;
}

.terms p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #ccc;
}

.terms ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.terms li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.terms a {
  color: #f47c23;
  text-decoration: underline;
  transition: color 0.3s;
}

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

.terms.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.terms.visible {
  opacity: 1;
  transform: translateY(0);
}
