/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  h1, h2, h3, h4, h5 {
    margin-bottom: 0.5em;
    line-height: 1.2;
  }

  .logo {
    width: 150px;
  }
  
  /* Header and Video Background */
  .header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
    text-align: center;
  }
  
  .background-video, .background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }

  .blur-inferior {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 150px; /* Altura del blur inferior */
      backdrop-filter: blur(10px);
      background-color: rgba(255, 255, 255, 0.2); /* Efecto translúcido opcional */
    }
  
  .overlay {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0rem 2rem;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
  }
  
  .nav-links a {
    margin-left: 1.5rem;
    color: #fff;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #FFD700;
  }

  .header-content {
    margin-top: 8rem;
    text-align: left;
    max-width: 600px;
  }
  
  .header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-in-out;
  }
  
  .header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideUp 1.2s ease-in-out;
  }

  .dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  color: #fff;
  margin-left: 1.5rem;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: -40px;
  background-color: #222;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  min-width: 200px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  color: white;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  margin-left: 0;
}

.dropdown-menu a:hover {
  background-color: #FFD700;
  color: black;
}


  
  .btn-secondary {
    background-color: #FFD700;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn-secondary:hover {
    background-color: #FFD700;
  }
  
  /* Parallax Section Style */
  h2 {
    color: #000;
  }

  .services-header {
    display: flex;
    justify-content: space-around;
  }

  .services-header .complement {
    color: #000;
    max-width: 400px;
    text-align: left;
  }

  .section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .section-light {
    background-color: #f9f9f9;
    color: #333;
    padding: 4rem 2rem;
    text-align: center;
  }

  .solutions {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .solutions .description {
    max-width: 500px;
    text-align: left;
  }

  .solutions .description h2 {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }

  .why {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .why .description {
    max-width: 500px;
    text-align: left;
  }

  .why .description h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .why .benefits {
    display: flex;
  }

  .why ul li {
    background: #F5F4F4;
    margin: 5px;
    list-style: none;
    max-width: 200px;
    padding: 10px 10px 10px 4px;
  }

  .opinion {
    color: #000;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .opinion .description {
    max-width: 500px;
    text-align: left;
  }

  .opinion .description h2 {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  
  .service-cards, .team-cards, .blog-cards {
    color: #000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }

  .team-cards {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .team-cards img {
    max-width: 600px;
  }

  .service-cards img {
    width: 300px;
    border-radius: 23px;
  }

  .service-cards .description {
    margin-top: 1rem;
    max-width: 300px;
    text-align: left;
  }

  .service-cards .btn-secondary {
    background-color: #fff;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .service-cards .btn-secondary:hover {
    background-color: #FFD700;
    color: #fff;
  }
  
  .service-card, .team-card, .blog-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card:hover, .team-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  
  blockquote {
    font-style: italic;
    font-size: 1.5rem;
    margin-top: 2rem;
    animation: fadeIn 2s ease-in-out;
  }
  
  cite {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }
  
  /* Contact Form */
  .contact-section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .contact-section .contact {
    max-width: 400px;
    text-align: left;
  }

  .contact-section .find-us {
    text-align: left;
  }

  .contact-section form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-section input,
  .contact-section textarea {
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .contact-section button {
    background-color: #FFD700;
    border: none;
    padding: 0.75rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact-section button:hover {
    background-color: #FFD700;
  }

  .contact-section .card-info {
    background-color: #bdbdbd;
    margin-bottom: 10px;
    width: 400px;
    padding: 10px;
  }

  .contact-section .submit {
    max-width: 160px;
  }
  
  /* Footer */
  .footer {
    background: #222;
    color: #ccc;
    padding: 2rem;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  .footer-container .description {
    max-width: 400px;
  }
  
  .footer-links ul,
  .footer-social ul {
    list-style: none;
  }
  
  .footer-links li,
  .footer-social li {
    margin-bottom: 0.5rem;
  }
  
  .footer a {
    color: #FFF;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #f0c040;
  }
  
  .footer-newsletter input {
    padding: 0.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border: none;
  }
  
  .footer-newsletter button {
    padding: 0.5rem 1rem;
    background: #FFD700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .footer-newsletter button:hover {
    background: #FFD700;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
  }

  .icons-social {
    display: flex;
    gap: 15px;
  }

  .icon-social{
    width: 30px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Accessibility */
  a:focus,
  button:focus,
  input:focus,
  textarea:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
    }
  
    .nav-links a {
      display: block;
      margin: 0.5rem 0;
    }
  
    .service-cards, .team-cards, .blog-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
    }

    .contact-section {
      flex-direction: column;
    }

    .contact-section .card-info {
      width: 100%;
    }

    .team-cards img {
      width: 100%;
    }

    .why {
      flex-direction: column;
    }

    .header {
      height: 1000px;
    }

    .solutions {
      flex-direction: column;
    }
  }
  

   body {
      margin: 0;
      font-family: 'Inter', sans-serif;
    }

    .benefits-section {
      background-color: #FFD700;
      padding: 50px 20px;
      text-align: center;
      color: #fff;
    }

    .benefits-section h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 40px;
      color: #fff;
    }

    .benefits {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .benefit {
      max-width: 250px;
    }

    .benefit-icon {
      margin-bottom: 15px;
      margin: 0 auto;
      width: 100px;

      img {
        max-width: 100px;
      }
    }

    .benefit-title {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .benefit-desc {
      font-weight: 400;
      font-size: 14px;
      color: #fff;
    }

    .cta-section {
      background-color: #f9f9f9;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 80px 20px;
      background-size: cover;
      background-position: center;
      color: #000;
      height: 600px;
    }

    .cta-content {
      background: rgba(255, 255, 255, 0.9);
      padding: 40px;
      border-radius: 10px;
      text-align: center;
    }

    .cta-content h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .cta-content button {
      background-color: #FFD700;
      border: none;
      padding: 15px 25px;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
      border-radius: 5px;
    }

    .cta-content button:hover {
      background-color: #e6c200;
    }

/*Tetimonnial section*/
.testimonial-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 20px 40px 0;
  font-family: sans-serif;
  flex-wrap: wrap;
}

.testimonial-header {
  flex: 1 1 300px;
  max-width: 40%;
}

.testimonial-header h2 {
  font-size: 2rem;
  color: #121212;
}

.testimonial-header p {
  color: #777;
  margin-top: 10px;
  margin-bottom: 30px;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
}

.testimonial-controls button {
  background: none;
  border: 2px solid #fcd900;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 20px;
}

.testimonial-controls button.filled {
  background-color: #fcd900;
  color: #fff;
  border: none;
}

.testimonial-slider {
  flex: 1 1 300px;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  border: 3px solid #fcd900;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease;
}

.testimonial-card.active {
  display: block;
  position: relative;
}

.testimonial-photo {
  width: 150px;
  border-radius: 12px;
  object-fit: cover;
  float: left;
  margin-right: 15px;
}

.testimonial-info {
  overflow: hidden;
}

.testimonial-info h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
}

.testimonial-info .role {
  font-size: 0.9rem;
  color: #777;
  margin: 4px 0 10px;
  text-align: left;
}

.stars {
  color: #fcb900;
  font-size: 18px;
  text-align: left;
}

.feedback {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #444;
  text-align: left;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fcd900;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.5rem;
  color: white;
}

/* RESPONSIVE STYLES */
@media (max-width: 900px) {
  .testimonial-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .testimonial-header {
    max-width: 100%;
    text-align: center;
  }

  .testimonial-controls {
    justify-content: center;
  }

  .testimonial-slider {
    max-width: 100%;
  }

  .testimonial-photo {
    float: none;
    display: block;
    margin: 0 auto 10px;
  }

  .testimonial-info {
    text-align: center;
  }

  .quote-icon {
    top: 10px;
    right: 10px;
  }
}
