@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;700;800&family=Poppins:wght@300;400;500;700;800&display=swap");
/* 17/04/24 15:00 */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

@keyframes zoomOut {
  from {
    transform: scale(0.1); 
  }
  to {
    transform: scale(
      1
    ); 
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 
====================
GENERAL STYLES
====================
*/


  
  h1{
    font-size: 0.8em;
  }

.floating {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 1px 1px 2px #999;
  z-index: 1000;
 }

.fa-brands.fa-whatsapp {
  color: #ffffff; margin-top: 16px;
}

.separator {
  height: 13px;
  margin: 30px 0;
  z-index: 1000;
}

.separator-center {
  margin: 30px auto;
}

.separator-small {
  width: 300px;
}

.separator-medium {
  width: 350px;
}

.separator-large {
  width: 450px;
}

.separator-blue {
  background: repeating-linear-gradient(
    -45deg,
    #1aa4df,
    #1aa4df 2px,
    transparent 2px,
    transparent 6px
  );
}

.separator-white {
  background: repeating-linear-gradient(
    -45deg,
    #ffffff,
    #ffffff 3px,
    transparent 3px,
    transparent 6px
  );
}

.separator-green {
  background: repeating-linear-gradient(
    -45deg,
    #5ad5a8,
    #5ad5a8 3px,
    transparent 3px,
    transparent 6px
  );
}

@media (max-width: 758px) {
  .separator-small {
    width: 200px;
  }

  .separator-medium {
    width: 250px;
  }

  .separator-large {
    width: 350px;
  }

  .button{
    padding: 10px 40px;
  }
}

@media (max-width: 400px) {
  .separator-small {
    width: 100px;
  }

  .separator-medium {
    width: 150px;
  }

  .separator-large {
    width: 220px;
  }
  .button{
    padding: 10px 40px;
  }
}

.cover {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 40vh;
  overflow: hidden;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3.125em;
  font-weight: bold;
  text-align: center;
  z-index: 2;
}



.overlay-text h2 {
    text-transform: uppercase;
    font-size:0.4em;
}

.cover::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

@media (max-width: 400px) {
    .overlay-text {
        position: absolute;
        top: 80%;
        padding-bottom: 30px;
  
      }
      
    }

/* 
=============
WAVES GENERAL
=============
*/
.wave-base {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 20;
}

.wave-base-invert {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 20;
}

.wave-svg {
  position: relative;
  display: block;
}

.wave-top {
  top: 0;
}

.wave-bottom {
  bottom: 0;
}

.wave-svg-big {
  width: calc(150% + 1.3px);
  height: 180px;
}

.wave-svg-medium {
  width: calc(188% + 1.3px);
  height: 135px;
}

.wave-svg-small {
  width: calc(100% + 1.3px);
  height: 120px;
}

.wave-svg-large {
  width: calc(180% + 1.3px);
  height: 90px;
}

@media (max-width: 758px) {
  .wave-svg-big {
    height: 100px;
  }

  .wave-svg-medium {
    height: 50px;
  }

  .wave-svg-small {
    height: 30px;
  }

  .wave-svg-large {
    height: 15px;
  }
}

.color-light {
  fill: #f2f2f2;
}

.color-white {
  fill: #ffffff;
}

.color-green {
  fill: #b8dbbb;
}

.color-fluor-green {
  fill: #00a0ac;
}

.color-white-green {
  fill: #d6e8d7;
}

.color-blue {
  fill: #1273af;
}

/* promocional banner */
.promo-banner {
  width: 100%;
  height: 3rem;
  background-color: #0086c0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 3rem;
}

.promo-message {
  margin-right: .85rem;
  color: #ffffff;
  font-weight: 400;
}

.promo-button {
  background-color: #004d80;
  color: #ffffff;
  padding: .25rem 1rem;
  border: none;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s; 
}

.promo-button a {
  color: inherit;
  text-decoration: none;
}

.promo-button:hover {
  background-color: #ffffff;
  color: #004d80;
}

.promo-button:hover a {
  color: inherit;
}

@media (max-width: 600px) {
  .promo-banner {
    height: auto; 
    flex-direction: column; 
    align-items: center; 
    padding: 1rem; 
  }

  .promo-message {
    font-size: 0.86rem; 
    margin-right: 0; 
    margin-bottom: 0.5rem; 
  }

  .promo-button {
    font-size: 0.8rem; 
    width: 100%;
  }
}


/* Nav */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
}

.logo img {
  max-height: 40px;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu,
.dropdown-menu {
  list-style-type: none;
}

.menu li a,
.dropdown-menu li a {
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #0082f3;
}

.social-media-nav {
  display: flex;
  gap: 12px;
}

.social-media-nav img {
  width: 100%;
  height: 100%;
}

.menu-button {
  display: none;
  color: #fff;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  background-color: #f2f2f2;
  height: 0;
  text-align: center;
  position: absolute;
  top: 60px;
  right: 0;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.dropdown-menu.open {
  height: 300px;

}

.dropdown-menu li {
  width: 100%;
  padding: 10px;
}

.dropdown-menu li a {
  color: #1aa4df;
  width: 100%;
}

.dropdown-menu li a:hover {
  color: #0079e3;
}

.social-icons-dropdown > a > img{
  background-color: #1aa4df;
  border-radius: 3px;
}

@supports (backdrop-filter: blur(10px)) {
  .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .dropdown-menu li a {
    color: #f2f2f2;
  }

  .social-icons-dropdown > a > img{
    background-color: transparent;
  }
}

@media screen and (max-width: 1024px) {
  .menu,
  .social-media-nav,
  .social-media-nav img {
    display: none;
  }

  .menu-button,
  .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    left: 0;
    width: unset;
    margin: 2rem;
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  .navbar {
    top: 100px;
  }

  .dropdown-menu {
    top: 140px;
  }
  
}

@media screen and (max-width: 400px) {
  .logo img {
    max-height: 50px;
    width: 150px;
  }
}

/* Footer */

.footer {
  background-color: #0086c0;
  color: white;
  position: relative;
  padding: 2em;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  margin: 10px;
}

.footer-section h3 {
  font-size: 0.8em;
  color: #004d80;
  margin-bottom: 13px;
}

/* .footer-orgullosos {
  display: flex;
} */

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
}

.footer-section:last-child ul li {
  font-size: 1.4em;
  font-weight: 700;
}

.footer-logo,
.footer-image {
  max-width: 80%;
  object-fit: contain;
  object-position: 0 50%;
}

.content-image-footer {
  display: flex;
}

.footer-image-empresab {
  height: 140px;
}

.footer-image-carb {
  height: fit-content;
  padding-left: 6px;
}

.footer-logo {
  height: fit-content;
  padding-right: 3em;
}

.g-recaptcha {
  display: inline-block;
  transform: scale(0.9);
  transform-origin: 0 0;
}

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

  .footer-section {
    margin: 15px 0;
  }

  .footer-section:last-child ul li {
    font-size: 0.9em;
    font-weight: 700;
  }
  .cover img{
    object-fit: cover !important;
  }
  .cover {
    height: 30vh !important;
  }
  .overlay-text {
    font-size: 1.5em;
    top: 58%!important;
   }
  .button {
    padding: 10px 40px;
  }
}


  .g-recaptcha {
    transform: scale(0.75);
  }


@media screen and (max-width: 330px) {
  .g-recaptcha {
    transform: scale(0.55);
  }
}

/* 
============================
WAVE DIVIDER FOOTER
============================ß
*/

.custom-shape-divider-top-1693671497 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -4em;
  z-index: 999;
}

.custom-shape-divider-top-1693671497 svg {
  position: relative;
  display: block;
  width: calc(147% + 1.3px);
  height: 76px;
}

.custom-shape-divider-top-1693671497 .shape-fill {
  fill: #0086c0;
}

/* Home page*/
/* 
====================
BASE STYLES
====================
*/

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 160px;
  position: relative;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1100px;
  flex-wrap: wrap;
}

.content {
  padding: 0 2rem;
}

.content,
.column {
  box-sizing: border-box;
  flex: 1 1 50%;
  padding-right: 1.7rem;
}

.content > h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
}

.text-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.text-container p {
  font-size: 0.8rem;
  color: #696969;
}

.text-container h3 {
  font-size: 1.2rem;
}

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

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

/* 
====================
SLIDER STYLES
====================
*/

.slider-home,
.slides-container,
.slide {
  height: 100%;
  width: 100%;
}

.slider-home {
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px;
  animation: fade 46s linear infinite; 
  opacity: 0;
  visibility: hidden;
}


.slide-safe-transit {
  animation-delay: 0s;
  background-image: url(../images/slide02.jpg);
}
.slide-bus-service {
  animation-delay: 5s;
  background-image: url(../images/slide04.jpg);
}
.slide-event-transit {
  animation-delay: 10s;
  background-image: url(../images/slide05.jpg);
}
.slide-llt-country {
  animation-delay: 15s;
  background-image: url(../images/banner-LLT-pais.jpg);
}
.slide-llt-deliveries { 
  animation-delay: 20s;
  background-image: url(../images/Banner-LLT-envios-2024.jpg); 
}
.slide-llt-black { 
  animation-delay: 25s;
  background-image: url(../images/Banner-LLT-black1.jpg);
}
.slide-llt-global {
  animation-delay: 30s;
  background-image: url(../images/banner-aeropuertos.jpg); 
}
.slide-b-cert {
  animation-delay: 35s;
  background-image: url(../images/slide01.jpg);
}
.slide-carbon-zero {
  animation-delay: 40s;
  background-image: url(../images/slide03.jpg);
}

@keyframes fade {
  0%,
  21%,
  100% {
    opacity: 0;
    visibility: hidden;
  }
  5%,
  16% {
    opacity: 1;
    visibility: visible;
  } 
} 



/* .slide-text {
  position: absolute;
  width: 500px;
  left: 20%;
  padding: 20px;
  color: #fff;
  z-index: 1;
  margin-top: -10em;
}

.slide-title {
  font-size: 3.3rem;
  line-height: 50px;
} */


.slide-text {
  position: absolute;
  width: 500px;
  left: 20%; 
  padding: 20px;
  color: #fff;
  z-index: 1;
  top: 50%; 
  transform: translateY(-50%); 
}

.slide-title {
  font-size: 3rem;
  line-height: 1.2;
}


.button-info {
  position: relative;
  z-index: 1000;
  width: 150px;
  margin-top: 31px;
  padding: 9px 15px;
  border: 2px solid #f2f2f2;
  border-radius: 100px;
  background-color: transparent;
  transition: all 800ms ease;
  font-size: 12px;
  text-align: center;
}

.button-info a {
  text-decoration: none;
  color: #fff;
}

.button-info:hover {
  background-color: #f2f2f2;
}

.button-info:hover a {
  color: #004d80;
}

.slide-contain-image {
  position: absolute;
  right: 15%;
  top: 25%;
}

.slide-contain-image img{
  height: 300px;
}

.slide-logo-responsive {
  display: none;
}

@media (max-width: 1025px) {
  .slide-logo-responsive {
    display: inline-block;
  }

  .slide-contain-image {
    opacity: 0;
  }

  .slide-logo-responsive {
    right: 0;
    top: 500px;
    width: 100%;
    display: flex;
    padding-top: 20px;
  }

  .slide-logo-responsive img {
    height: 230px;
  }
}

/* 
====================
SPECIFIC SECTION STYLING
====================
*/

.about-us-section,
.contact-form-section {
  background-color: #f2f2f2;
}

.about-us-content > h2 {
  color: #64b945;
  animation: slideInFromLeft 1s ease-out forwards;
}

.text-about-us {
  color: #bbce84;
}

.susten-content > h2 {
  color: #004d80;
}

.text-susten {
  color: #428bc9;
}

.susten-section-wave .shape-fill {
  fill: #ffffff;
}

/* Especialistas */
.esp-section {
  padding: 60px;
  background: linear-gradient(
    90deg,
    rgba(18, 168, 198, 1) 0%,
    rgba(5, 5, 158, 1) 87%
  );
}

.esp-container {
  max-width: 90%;
  width: 600px;
  padding-bottom: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.esp-container > img {
  width: 85%;
}

.esp-container .esp-text {
  font-size: 2.4em;
  font-weight: 600;
  line-height: 50px;
  text-align: center;
  color: #fff;
}

/* contact form */
.contact-form-section {
  padding-top: 7em;
}

.contact-form-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1300px;
  width: 80%;
}

.contact-form-content > div:first-child {
  max-width: 30%;
  padding: 1em;
}

.contact-form-content > div:last-child {
  flex: 1;
  max-width: 50%;
  padding: 1em;
}

.text-contact-form > h2 {
  color: #004d80;
  font-size: 2em;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 1em;
}

.text-contact-form > p {
  font-size: 0.9em;
  margin-top: 2em;
  color: #494949;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-form .form {
  width: 100%;
}

.text-field,
.textarea,
.submit-button {
  width: 100%;
  font-size: 0.8em;
  margin-bottom: 1em;
  padding: 0.5em;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c5c5c5;
  outline: none !important;
}

.textarea {
  height: 100px;
  resize: vertical;
}

.text-field::placeholder,
textarea::placeholder {
  color: #c5c5c5;
}

.submit-button {
  width: 150px;
  padding: 9px 15px;
  margin-top: 25px;
  background-color: transparent;
  border: 2px solid #004d80;
  border-radius: 100px;
  color: #004d80;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #004d80;
  color: #fff;
}

.form-error {
  display: block;
  color: #f87171;
  font-size: 0.7em;
}

.form-group {
  margin-bottom: 0.75em;
}

.form-group > input {
  margin-bottom: 0;
}

.form-group.has-error > input {
  border-bottom: 1px solid red;
}

.scroller {
  max-width: 1100px;
  min-width: 1100px;
  width: 100%;
  position: relative;
}

.scroller-inner {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 5) - 12px);
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 16px;
}

.scroller-inner img {
  height: 200px;
  object-fit: cover;
}

@media screen and (max-width: 480px) {
  .scroller-inner img {
    height: 180px;
  }
}

/* Services page */

.cards-section {
  padding: 60px 0px 10px;
}

.cards-container {
  display: grid; 
  grid-template-columns: repeat(3, 430px); 
  gap: 20px 0;
  justify-items: center;
  align-items: center;
}

.card {
  width: clamp(250px, 100%, 400px); 
  height: 300px;
  margin: 0;
  border-radius: 10px;
  box-shadow: 8px 8px 13px 2px #b4b4b4;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-image: url(/images/portadaclientes.png);
  background-size: cover;
  background-position: center;
  
}



.card-icon2 > img {
  max-width: 70%;
  max-height: 70%;
  object-fit: cover;
}

.card-icon2 {
    display: flex;
    justify-content: center;
    align-items: left;
    height: 100%;
    background-image: url(/images/vip.png);
    background-size: cover;
    background-position: center;
    z-index: 7;
    
  }
  
  
  
  .card-icon > img {
    max-width: 70%;
    max-height: 70%;
    object-fit: cover;
  }
  
  .card-icon2 > img {
    max-width: 70%;
    max-height: 70%;
    object-fit: cover;
  }

.card-content {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  font-size: 1.5em;
  color: #428bc9;
}

.card-content p {
  font-size: 0.75em;
  color: #696969;
}

.presentation-download {
  text-align: center; 
  margin-top: 25px; 
}

.download-button {
  width: auto; 
  padding: 9px 15px;
  margin-top: 25px;
  background-color: transparent;
  border: 2px solid #004d80; 
  border-radius: 100px; 
  cursor: pointer;
  transition: background-color 0.3s; 
  color: #004d80;
  text-decoration: none; 
  font-size: 16px; 
  display: inline-block;
}

.download-button:hover {
  color: #f2f2f2;
  background-color: #004d80; 
}


.contact-separator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}



.contact-separator {
  font-size: 1.5rem;
}

.contact-separator .contact-separator-text {
  color: #747474;
  text-align: center;
}

.contact-separator a {
  text-decoration: none;
  color: #666666;
  font-weight: 500;
}

.atencion-cliente-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 800px;
  background: url("../images/atencionAlCliente.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.atencion-cliente-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 169, 216, 0.6);
  z-index: -1;
}

.atencion-cliente-content {
  max-width: 1300px;
  width: 90%;
  padding-top: 8em;
}

.atencion-cliente-content > h2,
.atencion-cliente-content > p {
  color: #f2f2f2;
  text-align: center;
}

.atencion-cliente-content > h2 {
  font-size: 2.37em;
  font-weight: 400;
  line-height: 40px;
}

.atencion-cliente-content > p {
  font-size: 1.2em;
  font-weight: 300;
  list-style: 30px;
}



.card-icon2 > img {
  max-width: 70%;
  max-height: 70%;
  object-fit: cover;
}

.card-content2 {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  text-justify: inter-word;
}

.card-content2 h3 {
  font-size: 1.2em;
  color: #428bc9;
}

.card-content2 p {
  font-size: 0.75em;
  color: #696969;
}

.card-content2 a {
  font-size: 1em;
  color:rgba(0, 169, 216, 0.6);
}

/* sustentabilidad page */

.sustenpage-content > span {
  font-size: 0.9em;
  font-weight: 700;
  color: #428bc9;
}

.sustenpage-content > h3,
.sustenpage-content > .sustenpage-span,
.text-content-carbon > h3,
.info-carbon-content > h3,
.questions-img > h3,
.empresa-b-content > h3,
.working-content > h3,
.customer-support-content > h3 {
  font-size: 2.4em;
  line-height: 40px;
  font-weight: 800;
  animation: slideInFromLeft 1s ease-out forwards;
}

.sustenpage-content > h3 {
  color: #64b945;
}

.sustenpage-content > .sustenpage-span {
  display: inline-block;
  color: #ccd349;
  margin-bottom: 0.8em;
  animation: zoomOut 1s ease-out forwards;
}

.sustenpage-content > p {
  font-size: 0.9em;
  color: #838383;
}

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

.image-content-carbono img {
  max-height: 200px;
  width: auto;
}

.image-content-emisiones img {
  max-height: 500px;
  width: auto;
}

.carbon-footprint-section {
  background-color: #f2f2f2;
}

.content-wrapper {
  max-width: 90%;
  width: 920px;
}

.content-wrapper
 {
  max-width: 100%;
  width: 1920px;
}

.text-content-carbon {
  flex: 1 1 40%;
  margin: 15px;
}

.text-content-carbon > h3 {
  color: #5ad5a8;
}

.text-content-carbon > p {
  font-size: 0.88em;
  color: #747474;
  margin: 1.7em 0;
}

.text-content-carbon > h4 {
  font-size: 1.25em;
  color: #1aa4df;
  margin-top: 0.8em;
}
.button a {
  text-decoration: none;
  color: #888888;
  font-size: 1.5rem;
  font-weight: 500;
}

.text-content-carbon > button,
.info-carbon-img > button {
  width: 100%;
  padding: 9px 100px;
  align-items: center;
  margin-top: 25px;
  background-color: transparent;
  border: 2px solid #004d80;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #004d80;
}

.button:hover a {
  color: #fff;
}

.sustenpage-content {
  flex: 0.8;
}

.info-carbon-container {
  max-width: 100%;
  width: 920px;
}

.info-carbon-content,
.info-carbon-img {
  flex: 1;
  padding: 15px;
}

.info-carbon-content > h3 {
  color: #428bc9;
}

.info-carbon-content > p {
  font-size: 1.25em;
  font-weight: 800;
  line-height: 25px;
  margin: 1.7em 0;
  color: #64b945;
}

.info-carbon-img {
  max-height: 300px;
}

.info-carbon-img > img {
  width: 60%;
}

.info-carbon-img > p {
  font-size: 0.812em;
  color: #747474;
  margin-top: 0;
  margin-bottom: 1.25em;
}

.questions-section {
  background: #00a0ac;
}

.questions-container {
  max-width: 90%;
  width: 920px;
}

.questions-img,
.questions-content,
.empresa-b-content {
  flex: 1;
  padding: 0 2em;
}

.questions-img > img {
  width: 80%;
  height: auto;
}

.questions-img > h3,
.questions-img > h5 {
  color: #fff;
}

.questions-img > h5 {
  font-size: 1.25em;
  margin-top: 1em;
}

.questions-content .questions-content-text > h4 {
  background-color: rgba(102, 198, 205, 0.55);
  color: #fff;
  padding: 0.9em;
}

.questions-content .questions-content-text > p {
  color: #fff;
  font-size: 0.812em;
  padding: 1em 0;
}

.empresa-b-section {
  background-color: #f2f2f2;
  padding: 100px 20px 90px;
}

.empresa-b-content > h3 {
  color: #64b945;
}

.empresa-b-text-container h4 {
  color: #bbce84;
}

.empresa-b-text-container p {
  font-size: 0.75em;
  color: #696969;
}

.content-wrapper,
.info-carbon-container,
.questions-container,
.empresa-b-container {
  width: 100%;
  max-width: 980px;
}

.image-content img,
.info-carbon-img > img {
  max-width: 100%;
  height: auto;
}

.mirada-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/backtechos.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.mirada-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.circle-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 700px;
  width: 700px;
  padding: 100px;
  margin-top: 8em;
  border-radius: 50%;
  background-color: #80d8c2;
  text-align: center;
  z-index: 20;
}

.circle-content::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  right: -40px;
  bottom: -40px;
  border: 14px solid #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.circle-content > h3 {
  font-size: 3.5em;
  line-height: 55px;
  color: #fff;
  margin-bottom: 0.65em;
}

.circle-content > p {
  font-size: 1.25em;
  color: #fff;
  margin-top: 0.65em;
}

.working-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.working-content {
  margin: 0 auto;
  max-width: 90%;
  width: 920px;
}

.working-content > h3 {
  color: #428bc9;
  text-align: center;
}

.working-content > p {
  font-size: 0.812em;
  color: #747474;
  margin-top: 1.25em;
  text-align: center;
}

.working-section > img {
  width: 70%;
  max-width: 100%;
}

.movility-section {
  width: 100%;
  background-color: #1273af;
}

.movility-content {
  max-width: 90%;
  width: max-content;
  margin: 0 auto;
}

.movility-content h3,
.movility-content span {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}

.movility-content > h3 {
  color: #fff;
  font-size: 3.75em;
  font-style: italic;
  line-height: 45px;
}

.movility-content > h3 > span {
  color: #ccd349;
}

.movility-content img {
  width: 60px;
}

/* Clientes pages */

.image-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em 5em;
}

.section .image-client {
  width: 190px;
  height: 190px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .image-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 4em 6em;
  }
  .section .image-client {
    width: 170px;
    height: 170px;
  }
}

/* Para dispositivos móviles */
@media (max-width: 768px) {
  .image-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 4em;
  }
  .section .image-client {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .image-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 2em;
  }
  .section .image-client {
    width: 100px;
    height: 100px;
  }
}

.customer-support-content {
  max-width: 90%;
  width: 700px;
  margin: 0 auto;
  text-align: center;
}

.customer-support-content > h3 {
  color: #428bc9;
}

.customer-support-content > p {
  color: #747474;
  font-size: 0.812em;
}

.customer-support-content > p > a {
  text-decoration: none;
  font-weight: 500;
  color: #666666;
}

/* sumate page */
.requirements-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
}

.requirements-wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.requirements-card {
  background-color: #fff;
  padding: 90px 130px;
  margin: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.requirements-title {
  font-size: 1.12em;
  color: #428bc9;
  margin-bottom: 0.8em;
}

.requirements-list {
  list-style-type: none;
}

.requirements-list-item {
  margin: 0.225em;
  font-size: 0.875em;
  color: #494949;
}

.requirements-list-item::before {
  content: "\2022";
  color: #428bc9;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.sumate-section {
  background-color: #f2f2f2;
}

/* General styles for the form section */
.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-wrapper > .form-title {
  text-align: center;
  font-size: 2.125rem;
  font-weight: bold;
  color: #004d80;
  margin-bottom: 1.5rem;
}

.input-field {
  width: 100%;
  font-size: 0.8rem;
  margin-bottom: 1em;
  padding: 0.5em;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #428bc9;
  outline: none;
}

.cv-form .input-field::placeholder {
  color: #c5c5c5;
}

.input-group,
.input-label,
.input-field-check {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.input-group {
  gap: 15px;
}

.input-group .form-group {
  width: 100%;
}

.input-label {
  width: 100%;
  margin-bottom: 1rem;
  flex: 1;
}

.vehicle-info .input-field {
  flex: 1;
}


/* Label styles */
.input-label {
  color: #777;
  font-size: 0.8em;
  margin-right: 0.625rem;
}

.email-button {
  width: auto;
  padding: 9px 15px;
  margin-top: 25px;
  background-color: transparent;
  border: 2px solid #004d80;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.email-button a {
  text-decoration: none;
  color: #888888;
}

.email-button:hover {
  background-color: #004d80;
}

.email-button:hover a {
  color: #fff;
}

/* contact page */

.contact-section {
  background-color: #f2f2f2;
}

.contact-wrapper {
  max-width: 1300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-card {
  height: 300px;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  margin: 15px;
  border-radius: 30px;
}

.contact-card > h4 {
  color: #428bc9;
  font-size: 1.125em;
  font-weight: 800;
  text-align: center;
}

.contact-card > ul > li {
  list-style: none;
  font-size: 1.25rem;
  color: #494949;
  margin: 0;
}

.contact-card > ul > li > a {
  text-decoration: none;
  font-size: 1em;
  color: #494949;
}

.contact-icon {
  width: 40px;
  height: 40px;
}

.contact-title {
  margin-top: 20px;
  font-size: 20px;
}

.contact-list {
  margin-top: 10px;
}

.social-media {
  display: flex;
}

.social-media-icon,
.contact-icon {
  width: 35px;
  height: 35px;
  padding: 5px;
  margin-right: 10px;
  background-color: #1aa4df;
  border-radius: 6px;
}

/* 
====================
RESPONSIVE STYLING
====================
*/

@media (max-width: 1280px) {

    .cards-container {
      grid-template-columns: repeat(2, 450px); 
    }
}

@media (max-width: 1024px) {
  .circle-content {
    height: 550px;
    width: 550px;
    padding: 75px;
  }

  .circle-content::before {
    top: -50px;
    left: -50px;
    right: -30px;
    bottom: -30px;
    border-width: 10px;
  }

  .circle-content > h3 {
    font-size: 2.5em;
    line-height: 40px;
  }

  .circle-content > p {
    font-size: 1em;
  }
}

@media (max-width: 992px) {
  .overlay-text {
    font-size: 2em;
  }

  .slide {
    padding: 50px;
    align-items: center;
  }

  .slide-text {
    width: 80%;
    left: 10%;
  }

  .slide-title {
    font-size: 2.5rem;
    line-height: 40px;
  }

  .button-info {
    font-size: 11px;
  }

  .customer-support-content > p {
    font-size: 0.875em;
  }

  /* sumateAllt */
  .requirements-card {
    padding: 40px 60px;
  }

  .form-wrapper > .form-title {
    font-size: 1.8rem;
  }

  .cv-form .input-field {
    font-size: 0.75rem;
    padding: 0.4em;
  }

  .email-button {
    padding: 8px 14px;
  }

  .cards-container {
    grid-template-columns: repeat(1, 1fr); 
  }
}

@media (max-width: 768px) {
  .overlay-text {
    font-size: 2em;
  }

  .cover {
    height: 30vh;
  }

  .slide {
    padding: 20px;
  }

  .slide-text {
    width: 70%;
    left: 0;
    padding: 10px;
  }

  .slide-title {
    font-size: 1.5rem;
    line-height: 30px;
  }

  .button-info {
    width: 130px;
    font-size: 10px;
    padding: 7px 10px;
  }

  .content,
  .image,
  .column {
    flex-basis: 100%;
    padding: 8px 0;
  }

  .content > h2 {
    font-size: 1em;
  }

  .text-container h3 {
    font-size: 0.9em;
  }

  .text-container p {
    font-size: 0.725em;
  }

  .susten-container {
    flex-direction: column-reverse;
  }

  .esp-container > img {
    width: 100%;
  }

  .esp-container .esp-text {
    font-size: 1.2em;
    line-height: 25px;
  }

  .contact-form-content {
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 2em 0;
  }

  .contact-form-content > div:first-child,
  .contact-form-content > div:last-child {
    max-width: 100%;
    padding: 0.5em;
  }

  .text-contact-form > h2 {
    font-size: 1em;
    line-height: 25px;
    margin-bottom: 0.5em;
  }

  .text-contact-form > p {
    font-size: 0.8em;
    margin-top: 1em;
  }

  .submit-button {
    width: 100%;
    margin-top: 1em;
  }

  .cards-container {
    grid-template-columns: repeat(1, 1fr); 
  }
  .card {
    flex-basis: 100%;
    height: auto;
    flex-wrap: wrap;
  }
  .card-icon {
    width: 100%;
    height: auto;
  }

  .card-icon2 {
    width: 100%;
    height: auto;
  }

  .atencion-cliente-content > h2 {
    font-size: 1.8em;
    line-height: 30px;
  }
  .atencion-cliente-content > p {
    font-size: 1em;
    line-height: 25px;
  }

  .contact-separator {
    font-size: 1.2rem;
  }

  .sustenpage-content,
  .text-content-carbon,
  .info-carbon-container,
  .info-carbon-content,
  .info-carbon-img,
  .questions-img,
  .questions-content,
  .empresa-b-content,
  .empresa-b-img {
    padding: 1em;
  }

  .info-container,
  .info-carbon-container,
  .questions-container {
    flex-direction: column;
  }

  .circle-content {
    height: 350px;
    width: 350px;
    padding: 50px;
  }

  .circle-content::before {
    top: -30px;
    left: -30px;
    right: -20px;
    bottom: -20px;
    border-width: 8px;
  }

  .circle-content > h3 {
    font-size: 1.7em;
    line-height: 30px;
  }

  .circle-content > p {
    font-size: 0.6em;
  }

  .working-content,
  .movility-content {
    width: 80%;
  }

  .movility-content > h3 {
    font-size: 2.5em;
    text-align: center;
  }

  .customer-support-content {
    max-width: 95%;
    width: auto;
  }

  .customer-support-content > h3 {
    font-size: 1.5em;
  }

  .customer-support-content > p {
    font-size: 0.937em;
  }

  /* sumateALLT */
  .requirements-card {
    padding: 30px 40px;
  }

  .form-wrapper > .form-title {
    font-size: 1.5rem;
  }

  .cv-form .input-field {
    font-size: 0.7rem;
    padding: 0.3em;
  }

  .input-label .input-field {
    width: 100%;
  }

  .input-group,
  .input-label,
  .input-field-check {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }

  .input-label {
    margin-bottom: 0.5rem;
  }

  .vehicle-info .input-field {
    width: 100%;
  }

  .email-button {
    padding: 7px 12px;
  }

  /* contact */
  .contact-card {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 480px) {
  .section {
    padding: 60px 10px 100px;
  }

  .overlay-text {
    font-size: 1.5em;
  }

  .atencion-cliente-content {
    width: 95%;
    padding: 1px;
  }

  .atencion-cliente-content > h2 {
    font-size: 1.5em;
    line-height: 25px;
  }

  .atencion-cliente-content > p {
    font-size: 0.9em;
    line-height: 20px;
  }

  .contact-separator {
    font-size: 0.9rem;
  }

  .sustenpage-content,
  .text-content-carbon,
  .info-carbon-content,
  .info-carbon-img,
  .questions-img,
  .questions-content,
  .empresa-b-content,
  .empresa-b-img {
    padding: 0.5em;
  }

  .sustenpage-content > h3,
  .text-content-carbon > h3,
  .info-carbon-content > h3,
  .questions-img > h3,
  .empresa-b-content > h3,
  .working-content > h3 {
    font-size: 1.6em;
    line-height: 30px;
  }

  /* susten page */
  .image-content-carbono img {
    height: 120px;
    width: auto;
  }

  .image-content-emisiones img {
    height: 330px;
    width: auto;
  }

  .circle-content {
    height: 300px;
    width: 300px;
    padding: 50px;
  }

  .circle-content::before {
    top: -15px;
    left: -15px;
    right: -10px;
    bottom: -10px;
    border-width: 5px;
  }

  .circle-content > h3 {
    font-size: 1.2em;
    line-height: 20px;
  }

  .circle-content > .separator {
    margin: 2px 0;
  }

  .working-content,
  .movility-content {
    width: 100%;
    padding: 0 10px;
  }

  .movility-content > h3 {
    font-size: 1.75em;
    text-align: center;
    line-height: 35px;
  }

  .working-section > img {
    width: 90%;
  }

  .movility-content img {
    width: 30px;
  }

  .customer-support-content {
    padding: 10px 0;
  }

  .customer-support-content > h3 {
    font-size: 1.25em;
  }

  .customer-support-content > p {
    font-size: 1em;
  }

  /* sumateALLT */
  .requirements-card {
    padding: 20px 30px;
  }

  .cv-form .input-field {
    font-size: 0.7rem;
    padding: 0.3em;
  }

  .input-label .input-field {
    width: 100%;
  }

  .input-group,
  .input-label {
    flex-direction: column;
    align-items: stretch;
  }

  .input-field-check {
    flex-direction: row;
    align-items: baseline;
  }

  .input-label {
    margin-bottom: 1rem;
  }

  .vehicle-info .input-field {
    width: 100%;
  }

  .form-wrapper > .form-title {
    font-size: 1.25rem;
  }

  .email-button {
    margin-top: 20px;
    padding: 6px 10px;
  }

  /* contact */
}
