/**
COLORES
  #C24162
  #FF1C1C
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --my-color-1: #ff1c1c;
  --my-color-2: #ed1d52;
  --my-color-3: #888888;
  --my-color-4: rgb(61, 61, 61);
  --my-color-over: rgb(61, 61, 61);
}
body {
  font-family: "Segoe UI", sans-serif;
  font-weight: 300;
  color: var(--my-color-3);
}
button {
  border: none;
  outline: none;
}
a {
  text-decoration: none;
  color: var(--my-color-4);
  font-weight: 500;
}

a:hover {
  color: var(--my-color-over);
  text-decoration: none;
}
/*i:hover {
  color: var(--my-color-3);
}*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Segoe UI", sans-serif;
}

#main {
  margin-top: 50px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 998;
  background: var(--my-color-2);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--my-color-4);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .carta{
    width: 100% !important;
  }
}

/*--------------------------------------------------------------
# Preguntas Frecuentes
--------------------------------------------------------------*/


.preguntasFrecuentes h4{
  font-size: 1rem;
}


/*--------------------------------------------------------------
# Preguntas Frecuentes
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;

}

#header.header-transparent {
  background: white;
}

#header.header-scrolled {
  background: white;
  padding: 12px;
}

#header .logo h1 {
  font-size: 24px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 55px;
}

@media (max-width: 768px) {
  #header.header-scrolled {
    padding: 15px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  position: static;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  margin-left: 10px;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: black;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 18px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a,
.navbar .active,
.navbar .active:focus,
.navbar li {
  border-radius: 12px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  background: rgb(90, 89, 89);
  color: white;
  border-radius: 15px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 10px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: hidden;
  background: var(--my-color-4);
  box-shadow: 0px 0px 30px rgb(63, 63, 63);
  transition: 0.3s;
  border-radius: 20px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
  color: whitesmoke;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: whitesmoke;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin: 0;
  padding: 10px;
  display: block;
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li strong {
  padding: 10px 0 10px 20px;
  display: block;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover > a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
  padding: 8px 10px;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: var(--my-color-2);
}

.navbar .megamenu:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
#navbar ul{
  border-radius:20px;
  padding: 6px;
  padding-left:9px;
  
  
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }

}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }


}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  border-radius:20px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(237, 29, 82, 0.8); 	
  transition: 0.3s;
  height: 30rem;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  display: block !important;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--my-color-3);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: whitesmoke;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;

  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--my-color-2);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar-mobile .megamenu ul li a,
.navbar-mobile .megamenu ul li:hover > a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
}

.navbar-mobile .megamenu ul li a:hover,
.navbar-mobile .megamenu ul li .active,
.navbar-mobile .megamenu ul li .active:hover {
  color: var(--my-color-2);
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 0;
  
}

#hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('../../assets/img/13296.jpg') center center/cover no-repeat;
  opacity: 0.7; /* Ajustá el nivel de opacidad aquí */
  z-index: -1;
}
#hero .container {
  position: relative;
  z-index: 2;
  color: var(--my-color-2);
}
.hero-text-shadow {
  text-shadow:
    1px 1px 1px rgb(255, 255, 255)

}




#hero h1 {
  font-family: 'Montserrat', sans-serif;
  padding-top:2%;
  text-shadow: -1px 0 2px var(--my-color-4);
  color: var(--my-color-4);
  margin: 2rem 0 10px 0;
  font-size: 38px;
  font-weight: bold;
  line-height: 56px;
  text-transform: uppercase;
  letter-spacing: 1rem;
  padding-bottom: 2rem;
}

#hero .btn-primary {
  background-color: #e91e63;
  border: none;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 30px;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h2 {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: -1px 0 2px var(--my-color-4);
  letter-spacing: 4px;
  text-transform: capitalize;
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}
#hero img {
  padding-top: 1rem;
  width: 24rem;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    padding-bottom: 1rem;
    padding-top: 6px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    letter-spacing: 0 rem;
  }
  .g-recaptcha {
    margin-left: -12px !important;
  }
}
@media (max-width: 268px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    padding-bottom: 1rem;
    padding-top: 3rem;
  }
  .btn-descarga{

  height:1rem;

}


  .g-recaptcha {
    margin-left: -12px !important;
  }

}

.highlighted-img {
  position: relative;
}

.highlighted-img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 80%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(30px);
}




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f4f9fc !important;
}
.section-bg-2 {
  background-color: white !important;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
  color: var(--my-color-2);
  z-index: 2;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  /* background: url(../img/l.png) no-repeat;*/
  z-index: -1;
  margin-left: 1rem;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f8fbfd;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {

  background-size: cover;
  padding: 60px 60px 10px 60px;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 30px 30px 14px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--my-color-2);
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 15px;
}

.about .content .about-btn {
  display: inline-block;
  background: var(--my-color-2);
  padding: 6px 44px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
}

.about .content .about-btn i {
  font-size: 18px;
  position: absolute;
  right: 18px;
  top: 9px;
}

.about .content .about-btn:hover {
  background: #7bbad7;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: var(--my-color-2);
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
    padding-bottom: 1rem;
    
  }
  /*.about .content p {
    padding: 2px 1rem;
  }*/
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  text-align: center;
}
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: var(--my-color-2);
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 12px;
  line-height: 20px;
 /* margin-bottom: 0;*/
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: var(--my-color-3);
}
.services .icon:hover .icon i {
  color: var(--my-color-3);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: var(--my-color-2);
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: var(--my-color-2);
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  color: #49788c;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #49788c;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #6e9fb4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(var(--my-color-4), var(--my-color-2)),
    url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Segoe UI", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
  width: 10rem;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: var(--my-color-3);
  border-radius: 50px;
  padding: 2px 10px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--my-color-1);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(103, 176, 209, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(103, 176, 209, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #8ec4dd;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--my-color-2);
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--my-color-2);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(47, 77, 90, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.swiper-slide {
  display: flex;

  width: 200px; /* Define el ancho deseado para cada slide */
  height: auto; /* Define la altura deseada para cada slide */
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
  max-width: 400px; /* Ajusta el ancho máximo según tu preferencia */
  margin: 0 auto; /* Centra la caja del testimonio */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra verticalmente */
  align-items: center; /* Centra horizontalmente */
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

/* Ajusta el tamaño del nombre del remitente */
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

/* Ajusta el tamaño del cargo del remitente */
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #d5e9f2;
  font-size: 26px;
  position: absolute;
  top: 10px;
}
.testimonials .testimonial-item .quote-icon-left {
  left: 10px;
}

.testimonials .testimonial-item .quote-icon-right {
  right: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 15px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 20rem; /* Ajusta la altura máxima según tu preferencia */
  overflow: hidden; /* Oculta el exceso de contenido */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra verticalmente dentro del párrafo */
  text-align: center; /* Centra horizontalmente dentro del párrafo */
  
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--my-color-2);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--my-color-2);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: var(--my-color-1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
  max-height: 300px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--my-color-3);
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #52869d;
}

.team .member .social a:hover {
  color: var(--my-color-2);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}

.contact .info-box {
  color: #444444;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  /*padding: 20px 0 30px 0;*/
  height: 10rem;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--my-color-2);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f0f7fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: var(--my-color-2);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--my-color-4);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-top: -90px;
  margin-bottom: 15px;
  background: white;
  color: var(--my-color-3);
  border-top: 4px solid var(--my-color-2);
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Segoe UI", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--my-color-1);
  color: var(--my-color-3);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--my-color-2);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #b5d9e9;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #a2cfe3;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--my-color-2);
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ff1c1c;
}

#footer .copyright {
  border-top: 1px solid var(--my-color-3);
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
  .arrow-row .carta-l {
        max-width: 100%;
    }
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  display: flex;
  transition: transform 0.8s ease;
}

.carousel-slide img {
  width: 100%;
  height: auto;
}

header {
  text-align: center;
  background-color: #333;
  color: #fff;
  opacity: 0.9;
}

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

.blog-post {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ddd;
  margin: 10px;
  border-radius: 5px;
  overflow: hidden; /* Para evitar que la imagen se desborde */
}

.blog-post h2 {
  font-size: 1.5rem;
  padding: 10px;
  margin: 0;
  text-align: center;
}

.blog-post img {
  max-width: 100%; /* Para asegurarte de que la imagen se ajuste al ancho del contenedor */
  height: auto;
}

.blog-post p {
  font-size: 1rem;
  line-height: 1.4;
  padding: 10px;
  margin: 0;
  flex-grow: 1;
}

.btn {
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 10px;
  align-self: flex-start;
}

/* Establece una altura mínima para todos los contenedores de artículo */
.blog-post {
  min-height: 400px; /* Ajusta este valor según tus necesidades */
}
/*ICONOS RRSS*/
.social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.social-icons li {
  margin: 0 10px;
}

.social-icons a {
  text-decoration: none;
  font-size: 24px;
}
/*ICONOS RRSS*/

.logo-footer {
  width: 40%;
  padding-bottom: 10%;
}
.fixed-button {
  z-index: 999;
  position: fixed;
  bottom: 60px; /* Ajusta la distancia desde la parte inferior según tus preferencias */
  right: 20px; /* Ajusta la distancia desde la derecha según tus preferencias */
  width: 80px; /* Ajusta el ancho del botón según tus preferencias */
  height: 80px; /* Ajusta la altura del botón según tus preferencias */
  background-color: transparent; /* Color de fondo del botón */
  color: #25d366; /* Color del texto */
  border: none;
  border-radius: 50%; /* Para hacerlo redondo */
  text-align: center;
  font-size: 24px; /* Tamaño del icono */
  cursor: pointer;
  transform: scale(1); /* Escala inicial */
  transition: transform 0.3s ease-in-out; /* Agrega una animación suave para el tamaño */
}

.fixed-button i {
  font-size: 48px; /* Ajusta el tamaño del icono según tus preferencias */
}

.fixed-button.inactive {
  transform: scale(0); /* Escala a 0 cuando está inactivo */
}
.btn-s:hover {
  background-color: var(--my-color-2);
  color: black;
  transform: scale(1.1);
}
.fwhite {
  color: white;
}
.bblack {
  color: var(--my-color-4);
}
#soporte {
  background-color: var(--my-color-2);
}
#soporte:hover {
  background-color: var(--my-color-4);
}
.btn-demo {
  width: 100%;
  color: white !important;
  background-color: var(--my-color-2);
  height: 4rem;
  border-radius: 15px;
  margin-top: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-demo:hover {
  background-color: var(--my-color-4);
  color: white;
  transform: scale(1.05);
}
.btn-descarga{
  width: 100%;
  color: white !important;
  background-color: var(--my-color-2);
  height: 8rem;
  border-radius: 15px;

  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-descarga:hover {
  background-color: var(--my-color-4);
  color: white;
  transform: scale(1.05);
}
.linea-1-i{
  padding-top:3rem;
}

.linea-2-i{
  padding-bottom:3rem;
}


.titulo-1 .linea-1,
.titulo-1 .linea-2 {
  display: block; /* Cada línea ocupará su propio espacio */
  margin-bottom: -2.5px; /* Espacio reducido entre las líneas */
}

.titulo-1 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  color: white;
  text-shadow: -1px 0 2px black;
  text-transform: capitalize; /* Primera letra de cada palabra en mayúscula */
}

.minuscula {
  text-transform: lowercase; /* Fuerza la "y" en minúscula */
}

.linea-2 {
  text-transform: capitalize; /* El resto en capitalizado */
}

h1 .linea-1,
h1 .linea-2 {
  display: block; /* Cada línea ocupará su propio espacio */
  padding-top: 0.5rem;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: black;
  text-align: center; /* Opcional: para centrar el texto */
}


.g-recaptcha {
  margin-left: 34%;
  border-radius: 15px;
}

.items-sb {
  margin-top: 1rem;
}
.pedi-demo {
  background-color: var(--my-color-2);
  color: white;
}
/* Estilo adicional para hacer que el contenedor del video sea responsive */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Esta proporción mantiene la relación de aspecto del video 16:9 */
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  /* Estilos específicos para pantallas de móviles con un ancho máximo de 767px */
  .titulo-1 {
    letter-spacing: 0;
  }
  .g-recaptcha {
    margin-left: -13px;
  }
  #hero h1 {
    letter-spacing: 2px;
    padding-bottom: 1rem;
    padding-top: 3rem;
    font-size: 28px;
  }
  #hero h2{
    letter-spacing: 1px;
  }
  .linea-1-i{
    padding-top: 1rem ;

  }
  .linea-2-i{

    padding-bottom:1rem;
  }
  .arrow-row .carta-l {
        max-width: 100%;
    }
}

/*CARTA////////////////////////////////////////////////////////////////////////////////*/
.carta {
  width: 23rem;
  height: 15rem;
  perspective: 1000px;
  border-radius: 20px;
}
.carta-lg {
  width: 100%;
  height: 17rem;
  perspective: 1000px;
  border-radius: 20px;
}
.carta-l {
  width: 100%;
  height: 17rem;
  perspective: 1000px;
  border-radius: 20px;
  justify-content: center;
}


.carta .cara {
  transition: all 0.3s;
}

.cara {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s, background 0.5s, box-shadow 0.5s;
  cursor: pointer;
  border-radius: 15px;
}

.cara > div {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 15px;
}

.cara-adelante {
  transition: background 0.5s;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  border-radius: 20px;
  /*color:var(--my-color-4);*/
}

.cara-atras {
  background-color: white;
  transform: rotateY(180deg);
  color: black;
  transition: background 0.5s;
}
.carta .cara::before {
  content: "";
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.carta .cara:hover::before {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background: var(--my-color-2);
  top: 0%;
  height: calc(
    100%
  ); /* Ajusta según sea necesario para desplazarse hacia arriba */
  border-radius: 15px;
  transition: all 0.3s;
}
.carta-lg :hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background: var(--my-color-2);
  border-radius: 15px;
  transition: all 0.3s;
}

.cards {
  padding: 1rem;
  border-radius: 20px;
}

.mas-info-indicador {
  font-size: 24px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.carta:hover .cara .mas-info-indicador {
  opacity: 1;
  transform: translateY(-10px);
}

.plus {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, width 0.3s, height 0.3s;
}

.plus:hover {
  transform: scale(1.1); /* Escala del 110% al hacer hover */
}

.plus i {
  transition: transform 0.3s; /* Agrega una transición para el icono */
}

.plus:hover i {
  transform: scale(
    1.3
  ); /* Escala del 120% y desplazamiento hacia abajo al hacer hover en el icono */
}
.folleto{
  color:var(--my-color-3);
}
.folleto:hover{
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background: var(--my-color-2);
  border-radius: 15px;
  transition: all 0.3s;
  
}
.download-link {
  color: #000; /* Color de texto normal */
  transition: color 0.3s ease; /* Transición suave para el cambio de color */
}

.download-link:hover {
  color: #fff; /* Color de texto al hacer hover */
  transition: color 0.3s ease; /* Transición suave para el cambio de color */
}

/*CARTA*/

.video-sb {
  margin-top: 2.5rem;
}
.btn-animate {
  width: 98%;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  background-color: var(--my-color-2);
  border-radius: 15px;
  margin: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 1rem 3rem;
}

/* Agrega tus estilos CSS existentes aquí */
/* ... */

/* Definición de la animación personalizada */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Aplicar la animación al botón */
#heartButton {
  animation: pulse 3s infinite; /* Repetir la animación cada 3 segundos */
  transition: transform 0.3s ease-in-out; /* Agregar transición suave cuando el usuario interactúa */
}

/* Detener la animación al pasar el ratón sobre el botón */
#heartButton:hover {
  animation: none; /* Detener la animación en el estado :hover */
  transform: scale(
    1.1
  ); /* Aplicar escala aumentada al pasar el ratón sobre el botón */
}
.img-sb-tr {
  padding-bottom: 1rem;
}
.fw-bold-xl {
  font-weight: bold;
  font-size: 26px;
}
.w-img {
  width: 80%;
}
.erp2 {
  display: flex;
  flex-wrap: wrap; /* Permite que los elementos se envuelvan en filas adicionales */
  gap: 1rem; /* Espaciado entre elementos */
}

.video-erp2 {
  /*padding: 0.5rem 2rem;*/

  flex: 1; /* El primer elemento (video) ocupa todo el espacio disponible */
}


.resenas {
  padding-left: 6rem;
  flex: 2; /* El segundo elemento (reseñas) ocupa el doble de espacio que el video */
}

/* Media query para pantallas de tamaño de dispositivo móvil */
@media screen and (max-width: 767px) {
  .video-erp2 {
    /*background-color: black;*/
    padding: 0% 31% 0% 4%;
  }

  .resenas {
    padding-left: 1rem; /* Ajustar el padding para dispositivos móviles según tus necesidades */
  }
}
@media screen and (max-width: 430px) {

  .video-erp2 {
    
    padding: 0% 32% 0% 13%; /* Ajustar el padding para dispositivos móviles según tus necesidades */
  }
  .contact .info-box {
    height: 90%;
  }
  .carta {
    width: 100%;
  }
  .carta-l{
    height: 12rem;
  }
  #hero img {
    width: 28rem;
   }
   .about .content {
    padding: 15px 17px 0px 0;
}
  .btn-descarga{

  height:3rem;

}

}
@media screen and (max-width: 412px) {
  .video-erp2 {
    
    padding: 0% 32% 0% 13%; /* Ajustar el padding para dispositivos móviles según tus necesidades */
  }
  #hero img {
    width: 20rem;
   }
   section {
    padding: 10px 0;
    }
    .video-sb {
      margin-top: 2.5rem;
    }

}


.pregunta {
  padding: 5px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pregunta h4{
  font-size: 1rem;
}

.mostrarRespuesta {
  background: none;
  border: none;
  cursor: pointer;
}
.pregunta i{
color:var(--my-color-2);
}

.rta {
  display: none;
  margin-top: 10px; /* Añadir espacio entre la pregunta y la respuesta */
  color:black;
  font-size: 20px;
}
.rta p{
  padding: 0rem 0rem 0rem 1rem;
}
.content a{
  padding:1rem;
  color: var(--my-color-2);
}
.cons{
  width: 8rem;
  height: 2rem;
  font-size: 10px;
  margin-bottom: 1rem;

}
.form-vid{
  background-color: whitesmoke;
  max-width: 400px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}


.link-c{
  padding:0 !important;
}

.fb{
  color: var(--my-color-4);
  }
.fb:hover{
  color: var(--my-color-over);
  text-decoration: none;
  background-color:var(--my-color-2);
  transition: height 0.3s ease;
}

.bi.bi-list.mobile-nav-toggle:hover {
  pointer-events: none; /* Desactiva cualquier efecto hover */
}
.footer-partner {
  width: 99%;
  float: right;
  margin-top: 20px;  /* Ajusta el margen según convenga */
}

.footer-partner img {
  width: 80%;
  height: auto;
}

@media (max-width: 768px) {
  .footer-partner img {
    width: 100% !important;       /* Que ocupe todo el ancho disponible */
    display: block;
    margin: 0 auto;               /* Centrarlo */
  }
  .solution-item h4, .solution-item-w h4 {
    font-size: 1;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .footer-partner {
    text-align: center;
    padding-top: 1rem;
  }

  .logo-tr-footer-1 {
    width: 100% !important;       /* Sobrescribimos col-4 para ocupar todo */
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .logo-tr-footer-2{
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .footer-img-TR{
    max-height: 100px;
    float: center;
    padding-right: 0%;
  }
}

.footer-img-TR{
  max-height: 140px;
  float: right;
  padding-right: 5%;
}

@media (min-width: 1200px) {
  #navbar ul {
    padding-left: 0px;
  }
}
.navbar-toggler {
  
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background-color: transparent;
  transition: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ff1c1c' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
#as {
  /* Duración de la transición y tipo de animación */
  transition: transform 0.3s ease;
  /* Opcional: definir el punto de anclaje del escalado */
  transform-origin: center center;
  /* Estado inicial (sin escalado) */
  transform: scale(1);
}

#as:hover {
  /* Hacemos que crezca un 10% */
  transform: scale(1.1);
  /* Mantenemos tu fondo transparente */
  background-color: transparent !important;
}.cara-adelante,
.cara-atras {
  display: flex;            /* Flexbox               */
  flex-direction: column;   /* De arriba a abajo     */
  align-items: center;      /* (opcional) centrar horizontal */
  padding: 1rem;            /* Mueves el padding aquí */
}

/* 2 ▸ Empuja el bloque .plus al fondo                */
.cara-adelante .plus,
.cara-atras    .plus {
  margin-top: auto;         /* ocupa todo el espacio libre arriba */
}

/* 3 ▸ Si quieres conservar .cards solo para estilo   */
.cards { width: 100%; }     /* No hace falta más que esto */
/* Contenedor flex que ajusta filas según espacio */
.arrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Cada tarjeta ocupa como mínimo 200 px y llena el resto del espacio */
.arrow-row .carta-l {
  flex: 1 1 200px;
  max-width: 25%;        /* 4 tarjetas en desktop */
}

/* Flechas en horizontal por defecto */
.arrow-icon {
  flex: 0 0 auto;
  font-size: 1.5rem;
  color: var(--my-color-1);
  transform: rotate(0deg);
  transition: transform .3s;
}

/* Mobile: apila en columna y gira las flechas hacia abajo */
@media (max-width: 576px) {

  .arrow-row {
    flex-direction: column;
  }
  .arrow-row .carta-l {
    max-width: 100%;
  }
  .arrow-row .arrow-icon {
    display: block;            /* asegúrate de que estén visibles */
    transform: rotate(90deg);  /* flecha hacia abajo */
    margin: 0.5rem auto;       /* separa y centra */
  }
  .carta {
    width: 100% !important;
  }
}



/* lista interna de “píldoras” en fila */
.solution-group .solutions-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.solution-group h3{
  color:var(--my-color-2)
}

/* estilos de cada píldora */
.solution-item {
  
  background-color: var(--my-color-2);
  color: white;
  border-radius: 50px;
  padding: 1rem;
    align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.solution-item-w {
  
  background-color: transparent;
  color: white;

  padding: 1rem;
    align-items: center;
  justify-content: center;
  text-align: center;

}
.solution-item h4, .solution-item-w h4 {
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
   
}

.solution-item p, .solution-item-w p {
  font-size: 0.85rem;
  line-height: 1.4;

}

/* responsive: si caben menos de 4, se irán ajustando */
@media (max-width: 992px) {
  .solution-group .solutions-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .solution-group .solutions-list {
    grid-template-columns: 1fr;
  }
}


#soluciones .solution-group h3,
#soluciones .solution-group .lead {
  text-align: left;
}

.ver-rrhh{
font-size: 12px;
    font-weight: 400;
 border: 3px solid black !important;
border-radius: 15px;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
}
.ver-rrhh:hover{
scale: 1.1;
}

