* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Segoe UI", Tahoma, sans-serif;
      background: #f4f4f4;
    }

    /* Navbar */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #eb0722;
      color: white;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      transition: background 0.3s;
    }

    header .logo {
      width: 180px;
      font-weight: bold;
      letter-spacing: 1px;
      padding: 10px;
    }
    .logo_principal {
      width: 100%;
      display: block;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      font-size: 1rem;
      letter-spacing: 1px;
      position: relative;
      padding: 5px 0;
      transition: color 0.3s;
    }

    nav ul li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      background: white;
      left: 0;
      bottom: 0;
      transition: width 0.3s;
    }

    nav ul li a:hover {
      color: #ffdddd;
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
      border-radius: 5px;
      transition: all 0.3s;
    }

    /* Mobile Menu */
    .mobile-nav {
      position: fixed;
      top: 100px;
      right: -100%;
      width: 250px;
      height: 100%;
      background: #003d88d8;
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: right 0.4s ease-in-out;
      z-index: 10;
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav a {
      color: white;
      text-decoration: none;
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .mobile-nav a:hover {
      background: white;
      color: #003d88;
    }

    /* Slider */
    .slider {
      position: relative;
      width: 100%;
      height: 70vh;
      max-height: 600px;
      overflow: hidden;
      margin-top: 60px; /* space for navbar */
    }

    .slides {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide.active {
      opacity: 1;
    }

    .slide-content {
      text-align: center;
      background: rgba(0,0,0,0.4);
      padding: 20px 30px;
      border-radius: 10px;
      color: white;
      max-width: 90%;
    }

    .slide-content h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .slide-content a {
      display: inline-block;
      background: red;
      color: white;
      padding: 12px 25px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: background 0.3s;
    }

    .slide-content a:hover {
      background: darkred;
    }

    /* Arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
      color: white;
      background: #03234add;
      border: none;
      cursor: pointer;
      padding: 10px;
      border-radius: 10px;
      z-index: 10;
      transition: background 0.3s;
    }

    .arrow:hover {
      background: #03234a;
    }

    .arrow.left { left: 15px; }
    .arrow.right { right: 15px; }

    /* Dots */
    .dots {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background 0.3s;
    }

    .dot.active {
      background: white;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav ul { display: none; }
      .hamburger { display: flex; }
      .slide-content h2 { font-size: 1.5rem; }
    }

    @media (max-width: 480px) {
      .slider { height: 50vh; }
      .slide-content h2 { font-size: 1.2rem; }
      .logo {
        width: 140px;
      }

    }
/*-------------------------------------------------*/
/*-------------------------------------------------*/
/*-------------------------------------------------*/
/*-------------------------------------------------*/
    /* About Section */
    .about {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      margin-top: 60px;
    }

    .about-text {
      flex: 1 1 400px;
      padding: 30px;
    }
    .about-text p {
        width: 100%;
        font-size: 20px;
    }
    .tittle_about {
        width: 100%;
        margin: 30px auto;
        color: #b01829;
        font-size: 28px;
    }
    .about-img {
      flex: 1 1 350px;
    }

    .image_about {
      width: 350px;
      border-radius: 10px;
      display: block;
      margin: auto;
    }

    /* Features Section */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
      margin-top: 40px;
      padding: 20px;
    }

    .feature {
      text-align: center;
      padding: 20px;
      background: #f9f9f9;
      border-radius: 10px;
      transition: transform 0.3s, box-shadow 0.3s;
      opacity: 0;
      transform: translateY(50px);
    }

    .feature.show {
      opacity: 1;
      transform: translateY(0);
    }

    .feature img {
      width: 50px;
      margin-bottom: 15px;
    }

    .feature h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #333;
    }

    .feature p {
      font-size: 0.9rem;
    }

    /* Services Section */
    .tittle_services_section {
      width: 100%;
      text-align: center;
      margin: 30px auto;
      font-size: 28px;
      color: #b01829;
    }
    

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px;
    }

    .clients_img {
        width: 100%;
        display: block;
    }

    .service-item {
      position: relative;
      background: #ccc;
      height: 200px;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    .service-item.show {
      opacity: 1;
      transform: translateY(0);
    }

    .service-item h3 {
      background: #003d88d5;
      color: white;
      width: 100%;
      padding: 10px;
      font-size: 1rem;
      text-align: center;
      margin: 0;
      display: block;
      position: absolute;
      top: 0;
    }

    /* Animation Base */
    .slide-up {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    .slide-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      h2 {
        font-size: 1.6rem;
      }
      section {
        padding: 40px 5%;
      }
    }
    .section_2 {
      width: 100%;
      display: block;
      margin: 100px auto;
      padding: 0;

    }
    .box_sect_2 {
      width: 50%;
      margin: auto;
      background-color: #f3f3f3;
      border-radius: 10px;
      box-shadow: #ccc 2px 2px 1px;
      text-align: center;
    }
    .We_azul {
      color: #03234a;
      font-size: 26px;
    }
    .letter_69 {
      color: #b01829;
    }
    .tittle_section_2 {
      width: 300px;
      text-align: center;
      font-size: 28px;
      padding: 10px;
      color: #03234a;
      border-bottom: 4px solid #b01829;
      margin: auto;
    }
    .text_section_2 {
      width: 90%;
      font-size: 20px;
      padding: 20px 10px;
      text-align: justify;
      margin: auto;
    }
    .section_3 {
      width: 90%;
      margin: 100px auto;
      display: flex;
    }
    .section_3_A, .section_3_B {
      width: 50%;
    }
    .section_3_img {
      width:90%;
      margin: auto;
      display: block;
    }
    .tittle_section_3 {
      width: 100%;
      text-align: center;
      margin: 30px auto;
      font-size: 28px;
      color: #b01829;
    }
    .text_section_3 {
      width: 90%;
      padding: 10px;
      font-size: 18px;
    }
    .section_3_more {
      width: 140px;
      padding: 5px;
      display: block;
      margin: 50px auto;
      text-decoration: none;
      text-align: center;
      color: white;
      background-color: #03234a;
      border-radius: 2px;
    }
    .bottom_call {
      width: 100%;
      margin: 100px auto;
    }
    .call {
      width: 300px;
      padding: 10px;
      font-size: 22px;
      font-weight: 700;
      display: block;
      margin: auto;
      text-decoration: none;
      color: white;
      background-color: #b01829;
      border-radius: 10px;
      text-align: center;
    }
/* ====== Footer Base Styles ====== */
.footer {
  background: #03234a;
  color: #f1f1f1;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer_logo {
  width: 150px;
  margin: auto;
}
.loguito {
  width: 100%;
  
}
.footer h3, .footer h4 {
  margin-bottom: 15px;
  color: white;
  letter-spacing: 1px;
}

.footer p, .footer a {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00aaff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-contact p i {
  color: white;
  margin-right: 8px;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ffffff;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .box_sect_2 {
      width: 90%;
      margin: auto;
      background-color: #f3f3f3;
      border-radius: 10px;
      box-shadow: #ccc 2px 2px 1px;
      text-align: center;
    }
  .section_3 {
      width: 100%;
      margin: 50px auto;
      flex-wrap: wrap;
    }
    .section_3_A, .section_3_B {
      width: 90%;
      margin: auto;
      display: block;
    }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-contact p {
    justify-content: center;
  }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}
