
:root {
  --Tertiary-Blue: #0C1A66;
  --Secondary-orange: #FF9500;
  --Primary-red: #E04D36;
  --Primary-Dark: #0A0C10;
  --black-dark: #121212;
}

nav.header{
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
}

.check-blue{
  width: 30px;
}

/* Aplicar Poppins a todo el sitio */
body {
  font-family: 'Poppins', sans-serif;
}


.text-blue{
  color: var(--Tertiary-Blue);
}

.text-orange{
  color: var(--Secondary-orange);
}


.text-header{
  color: var(--Tertiary-Blue);
  /* H1 Heading */
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 79.2px */
}

.text-light{
  color: var(--Tertiary-Blue);
  /* P1 Paragraph */
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
}


.button-request-demo{
  color: #FFF;
  /* P1 Paragraph */
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
}


.knowKhor{
 /* H6 Heading */
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
}


#lottie-1, #lottie-collaborators, #lottie-collaborators-mobile, #lottie-simplify, #lottie-flexibility, #lottie-flexibility-1, #lottie-transform, #lottie-history, #lottie-logo {
  width: 100%;
  height: 100%;
}
/* tabs */
/* tabs */
.tab-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alinea los elementos a la izquierda */
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.1), 5px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
}


.tab-buttons {
  display: flex;
  justify-content: flex-start; /* Alinea los botones a la izquierda */
  width: 100%;
}


.tab-button {
  /* Mantén los estilos existentes y añade: */
  text-align: left; /* Alinea el texto dentro del botón a la izquierda */
}


.tab-content {
  /* Mantén los estilos existentes y añade: */
  text-align: left; /* Alinea el contenido a la izquierda */
  width: 100%;
  padding: 70px 50px 10px 50px;
}
.tab-content-info{
  text-align: center;
  margin:10px 0;
}

.tab-button {
padding: 16px 32px;
background-color: #D5D5D5;
color: #7D7E80;
border: 1px solid #C5C5C5;
border-radius: 16px 16px 0 0;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}

.tab-button.active {
background-color: white;
color: #424345;
border:none;
}

.tab-button:hover {
background-color: var(--Tertiary-Blue);
color: white;
}

.tab-content {
transition: opacity 0.3s;
display: none;
}

.tab-content.active {
display: block;
}
.tab-content-wrapper {
  display: flex;
  margin-bottom: 20px;
}


.tab-content-description {
  flex: 1;
  padding-right: 20px;
}
.tab-content-description p {
  margin-top:24px;
}

.tab-content-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding-right: 100px;
}

@media (max-width: 768px) {
  .tab-content-wrapper {
    flex-direction: column;
  }

  .tab-content-description,
  .tab-content-image {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
/* end tabs */
.s-modules{
  margin-top:90px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
padding: 20px;
}
/*
.s-modules-content{
  margin-top:60px;
}*/
/* carrousel */
.carousel-container {
position: relative;
width: 100%;
overflow: hidden;
padding: 10px 60px; 
}

.carousel {
display: flex;
transition: transform 0.5s ease;
margin: 0 -10px;
}

.carousel-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
/*background-color: rgba(0, 0, 0, 0.5);*/
color: white;
border: none;
/*padding: 10px;*/
cursor: pointer;
z-index: 10;
width: 60px; /* Ancho del botón */
height: 60px; /* Alto del botón */
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
border-radius: 25px;
}

.prev { left: 10px; }
.next { right: 10px; }


.card-container {
  flex: 0 0 256px;
  margin: 0 10px;
  perspective: 1000px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Añade esta línea para la sombra */
  border-radius: 10px; /* Opcional: para redondear las esquinas */
  overflow: hidden; /* Asegura que la sombra no se extienda más allá de las esquinas redondeadas */
}

.card {
width: 100%;
height: 360px;
transition: transform 0.6s;
transform-style: preserve-3d;
cursor: pointer;
}

.card-container:hover .card {
transform: rotateY(180deg);
}

.card-front, .card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 10px;
padding: 20px;
}

.card-front {
background-color: #f0f0f0;
}

.card-back {
background-color: var(--Secondary-orange);
color: white;
transform: rotateY(180deg);
}

.card-icon {
width: 50px;
height: 50px;
margin-bottom: 10px;
}
/* end carrousel */
.icon-wrapper {
width: 1rem; /* Ajustar el tamaño según sea necesario */
height: 1rem;
display: flex;
justify-content: center;
align-items: center;
}
svg {
max-width: 100%;
height: auto;
}
.bullet {
width: 10px; /* Ancho del bullet */
height: 10px; 
background-color: var(--Tertiary-Blue); /* Usando la variable de color azul definida en global.css */
border-radius: 50%; /* Para hacer el bullet redondo */
margin-right:5px;
}
.bg-answer-bg {
background-color: #EBEBEB; /* Fondo de color gris claro */
}
/* Animación para abrir y cerrar el menú móvil */
@keyframes slideDown {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 500px; /* Ajusta según el contenido */
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    max-height: 500px; /* Ajusta según el contenido */
    opacity: 1;
  }
  to {
    max-height: 0;
    opacity: 0;
  }
}

.menu-open {
  animation: slideDown 0.3s forwards;
}

.menu-close {
  animation: slideUp 0.3s forwards;
}
.contact-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin-top: 50px;
}


.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}


.form-input {
  background-color: #E7E5E3;
  /*border: 1px solid #D1D5DB;*/
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
}

.form-container {
  display: flex;
  flex-direction: column;
}

.form-input:focus {
  outline: none;
}
.contact-form label {
  color: #929494;
  text-align: left;
}
.submit-button {
  padding:12px;
  border-radius: 16px;
  align-self: flex-end;
  float: right;
}
.contact-form .form-input {
  margin-bottom: 10px;
}

.faq-question {
  padding: 10px 12px;
  height: 60px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.faq-question.active {
  box-shadow: -5px 0 5px -5px rgba(0,0,0,0.3), 5px 0 5px -5px rgba(0,0,0,0.3);
}
.icon-wrapper svg {
  transition: transform 0.3s ease;
  transform: rotate(-95deg); /* Rotación inicial a 45 grados */
}

.icon-wrapper svg.rotate-0 {
  transform: rotate(0deg); /* Rotación a 0 grados */
}

/*.faq-question {
  padding: 10px 12px;
  height: 60px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
}*/
.section-faq{
  margin-top:200px;
}
.faq-answer {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 20px 12px;
  font-size: 13px;
  background-color: #EBEBEB;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}
/* plans */
.flexible-plans .plan-card {
  display: flex;
  flex-direction: column;
  width: 97%;
  padding: 20px;
}

.plan-card .card-header {
  padding: 20px 30px;
  text-align: center;
}
.plan-card.bg-white .card-header {
  border-bottom:1px solid #0C1A66;
}
.plan-card.bg-orange .card-header {
  border-bottom:1px solid #f0f0f0;
}
.plan-card.bg-white .card-footer{
  border-top:1px solid #0C1A66;
}
.card-body{
  padding:10px 20px;
  font-weight: 200;
  line-height: 36px;
}

.plan-card.bg-orange .card-footer{
  border-top:1px solid #f0f0f0;
}
.card-footer {
  text-align: center;
  padding:10px 0;
}
.flexible-plans .card-body {
  flex-grow: 1;
}

.btn-primary {
  background-color: #E04D36;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 200;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #c03d2b;
}

.btn-secondary {
  background-color: white;
  color: #E04D36;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 200;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #f8f8f8;
}

.text-blue {
  color: #0C1A66;
}

.bg-blue {
  background-color: #0C1A66;
}
.bg-orange {
  background-color:#FF9500;
}

.extended-footer {
  background-color: var(--Primary-Dark);
  color: #fff;
  padding: 30px 0;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  margin: 0 15px;
  min-width: 250px;
}
.footer-column:first-child {
  flex: 1.5; /* Esto hará que la primera columna sea 1.5 veces más ancha que las demás */
}

.address {
  display: flex;
  margin-bottom: 20px;
}
.icon-container{
  width: 100px;
  height: 60px;
  padding:10px;
  margin-right:10px;

}

.icon {
  /*width: 24px;
  height: 24px;*/
  width: 100%;
  height: 100%;
  margin-right: 10px;
}
.icdmx {
  width: 100px;
  height: 80px;
  margin-right: 10px;
  align-self: flex-end; 
}
.imid {
  width: 100%;
  height: 60px;  
  margin-right: 10px;
  align-self: flex-end; 
}
.address-container{
  align-self: flex-end; 
}
.address-details h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: bold;
}

.address-details p {
  margin: 0;
  font-size: 14px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

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

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

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

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

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  border-top:1px dashed #ffffff;
  padding-top:10px;
}

.social-icons a img {
  width: 48px;
  height: 48px;
}
.footer-column ul li {
  margin-bottom: 24px; /* Cambiado de 10px a 24px */
}
.container-advantage{
  margin-top:80px;
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
}