* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.whatsapp-float {
  text-decoration: none;
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

body {
  font-family: 'Segoe UI', sans-serif;
}

.header {
  background-color: white;
  padding: 20px 30px;
}
header.header {
    position: fixed;
    z-index: 1000;
    width: 100%;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 55px;
}

.logo .slogan {
  font-size: 10px;
  color: #4a4a4a;
  text-transform: uppercase;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.nav-links li a {
  text-decoration: none;
  color: #de4b22;
  font-weight: 600;
  font-size: 16px;
  position: relative;
}

.nav-links li a::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #de4b22;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}
.btn-soporte {
  background-color: #de4b22;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.4s ease, transform 0.4s ease;
}

.btn-soporte:hover {
  background-color: #fb6e47;
  color: white;
  transform: scale(1.05); /* efecto de zoom leve */
}



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

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .btn-soporte {
    align-self: flex-start;
  }
}

.banner-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  height: 100%;
}
.swiper-button-next,
.swiper-button-prev {
  color: white !important; /* O el color que combine con tu diseño */
  width: 40px;
  height: 40px;
}

.banner-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center; /* ✅ centra verticalmente */
  height: 100%;
  color: white;
}

.banner-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* ✅ mejora contraste */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;

  padding: 120px 120px;
  text-align: left;
}

.banner-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #ffffffcc;
}

.banner-title {
  font-size: 56px;
  font-weight: bold;

  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.banner-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.banner-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-btn {
  background-color: #de4b22;  
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background-color: #bb3f1a;
}

.swiper-pagination {
  position: absolute;
  right: 20px;
 
  bottom: 30px;
}
/* Tamaño y color de los bullets */
.swiper-pagination-bullet {
  width:  10px !important;
  height: 10px !important;
  background: white !important;
  opacity: 0.5;
  transition: all 0.3s ease;
}

/* Bullet activo (slide actual) */
.swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
  transform: scale(1.3);
}

/* Posicionamiento opcional */
.swiper-pagination {
  bottom: 20px !important; /* Ajusta si lo quieres más arriba/abajo */
}


@media (max-width: 768px) {
  .banner-slide {
    padding: 0 20px;
  }

  .banner-title {
    font-size: 28px;
  }

  .banner-text {
    font-size: 15px;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 40px 34px;
    text-align: left;
}
}
.about-section {
  padding: 60px 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-label {
  color: #de4b22;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.about-title {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.about-description {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.about-box {
  background-color: #de4b22;
  color: #fff;
  padding: 20px;
  border-radius: 18px;
  flex: 1;
  min-width: 200px;
}

.about-box span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.about-box-light {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 18px;
  color: #333;
  flex: 1;
  min-width: 200px;
}

.about-box-light span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.about-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  color: #333;
}

.about-benefits li {
  margin-bottom: 10px;
  font-size: 15px;
}

.check-icon {
  color: #de4b22;
  margin-right: 10px;
}

.about-button {
  display: inline-block;
  background-color: #de4b22;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.about-button:hover {
  background-color: #bb3f1a;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: left;
  }

  .about-highlights {
    flex-direction: column;
  }
}

.services-section {
  padding: 60px 20px;
  background-color: #fff;
}

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

.services-content {
  flex: 1;
  min-width: 300px;
}

.services-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.services-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 220px;
}

.services-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #222;
  display: flex;
  align-items: center;
}

.icon {
  color: #de4b22;
  margin-right: 8px;
  font-weight: bold;
}

.services-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .services-list {
    flex-direction: column;
  }

  .services-list ul {
    width: 100%;
  }

  .services-image img {
    max-width: 100%;
  }
}
.partners-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

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

.partners-label {
  display: block;
  color: #de4b22;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}

.partners-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.partners-group {
  margin-bottom: 40px;
}

.partners-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.partners-logos img {
  max-height: 50px;
  max-width: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partners-logos img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .partners-logos {
    gap: 20px;
  }
}
.fullimage-section {
  width: 100%;
  overflow: hidden;
}

.fullimage {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}
.certifications-section {
  padding: 60px 20px;
  background-color: #fafafa;
}

.certifications-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.certifications-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  object-fit: cover;
}

.certifications-content {
  flex: 1;
  min-width: 300px;
}

.certifications-label {
  color: #de4b22;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.certifications-title {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.certifications-description {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.certifications-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.certifications-list li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #222;
}

.check-icon {
  color: #de4b22;
  margin-right: 6px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .certifications-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .certifications-image img {
    max-width: 100%;
  }
}
.success-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

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

.success-label {
  display: block;
  color: #de4b22;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}

.success-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.success-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.success-logos img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.success-logos img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .success-logos {
    gap: 30px;
  }
}
.faq-section {
  padding: 60px 20px;
  background-color: #fff;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.faq-content {
  flex: 1;
  min-width: 300px;
}

.faq-label {
  color: #de4b22;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-item.active {
  background-color: #fafafa;
  border-color: #de4b22;
}

.faq-question {
  font-weight: bold;
  font-size: 15px;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 18px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cta-section {
  background: url('img/c4adf2181cdf19daaf15451aa496808a3d533578.jpg') center center / cover no-repeat;
  padding: 100px 20px;
  position: relative;
}

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

.cta-box {
  background-color: #de4b22;
  color: white;
  padding: 50px;
  border-radius: 30px;
  max-width: 600px;
}

.cta-label {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.cta-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #de4b22;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
  background: #f4f4f4;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 30px;
    text-align: left;
  }

  .cta-title {
    font-size: 28px;
  }
}

.footer {
  background-color: #465960;
  color: white;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 240px;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-column ul li::before {
  content: "▶";
  color: #de4b22;
  margin-right: 8px;
  font-size: 10px;
}

.footer-social i {
  margin-right: 15px;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-social i:hover {
  color: #de4b22;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer p {
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.objectives-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.objectives-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.objectives-images {
  flex: 1;
  min-width: 150px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.quote-box {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 20px;
  font-style: italic;
  color: #777;
  display: flex;
  align-items: center;
}

.objectives-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.objectives-label {
  color: #de4b22;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.objectives-title {
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0 25px;
}

.objectives-list {
  list-style: none;
  padding: 0;
}

.objectives-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}

.objectives-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #de4b22;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .objectives-container {
    flex-direction: column;
  }
  
  .objectives-images {
    grid-template-columns: 1fr 1fr;
  }
}
.consolidation-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.consolidation-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.consolidation-content {
  flex: 1;
  min-width: 300px;
}

.consolidation-title {
  color: #de4b22;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.consolidation-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 30px;
}

.consolidation-list {
  list-style: none;
  padding: 0;
}

.consolidation-list li {
  font-size: 16px;
  color: #3c4a50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.check-icon {
  background: #de4b22;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  margin-right: 12px;
}

.consolidation-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .consolidation-container {
    flex-direction: column;
  }

  .consolidation-image img {
    max-width: 100%;
  }
}


.contacto-section {
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
}

.contacto-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding: 60px 20px;
}

.contacto-info {
  flex: 1;
  min-width: 300px;
}

.contacto-info h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.contacto-info p {
  margin-bottom: 30px;
  color: #333;
}

.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #de4b22;
}

.contacto-item i {
  font-size: 20px;
}

.contacto-item div {
  color: #333;
}

.contacto-form-box {
  flex: 1;
  min-width: 300px;
  background: #3c4a50;
  color: #fff;
  border-radius: 18px;
  padding: 30px;
}

.contacto-form-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contacto-form-box p {
  font-size: 14px;
  margin-bottom: 20px;
}

.contacto-form-box form input,
.contacto-form-box form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #de4b22;
  border-radius: 6px;
  background: #3c4a50;
  color: #fff;
  margin-bottom: 15px;
  font-size: 14px;
}

.contacto-form-box form textarea {
  height: 80px;
  resize: none;
}

.contacto-form-box form button {
  background: #de4b22;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.contacto-map iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
  margin-top: -4px;
}

/* Responsive */
@media (max-width: 768px) {
  .contacto-container {
    flex-direction: column;
  }
}
