/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #585a61;
  margin: 0;
  padding: 0;
}

a {
  color: #5777ba;
  text-decoration: none;
}

a:hover {
  color: #7b94c9;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0a182a;
  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: #585858;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: transparent;
  border-top: 8px solid #aa0000;
}

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

#header.header-scrolled {
  background: #220000;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .logo img {
  margin: 0 auto;
  max-height: 120px;  
}

#header .logo2 img {
  margin: 0;
  max-height: 50px;
}

#header .logo2 .fabricantes-img {
  margin: 0 10px 0 10px;
  max-height: 100px;
  width: 80%;
}

#header .logo2 .telephone {
  font-family: "Montserrat";
  font-size: 35px;
  font-weight: 500;
  color: white;
  letter-spacing: 2px;
}

#header .logo2 .telephone2 {
  font-family: "Montserrat";
  font-size: 35px;
  font-weight: 500;
  color: #ff0000;
}

@media (max-width: 768px) {
  #header .container{
    display: block;    
  }

  #header .logo img {
    margin: 0 auto;
    width: 71%;
    display: block !important;    
  }  
  
  #header .logo2 {
    display: none !important;
  }

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {  
  width: 100%;
  position: relative;
  overflow: hidden;  
  padding-bottom: calc(100vh - 700px);
  --hero-h1-width-desktop: 760px;
  --hero-h3-width-desktop: 760px;
  --hero-cta-width-desktop: 600px;
}

#hero::before {
  content: "";
  position: absolute;
  right: -100%;
  top: 0%;
  width: 250%;
  height: 200%;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    #220000 0%,
    #220000 10%,
    #aa0000 30%,
    #aa0000 100%
  );
  transform: skewY(180deg);
}

#hero .container {
  display: flex;
  justify-content: center;
  align-items: center;  
}

#hero .row {
  position: relative;
}

#hero .col-lg-5 {
  position: relative;
  z-index: 3;
}

#hero h1 {  
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

#hero h2 {
  color: #ffffff;
  margin-top: 20px;  
  font-size: 20px;  
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

#hero h2 span {   
  font-weight: 600;
  }

#hero h2 .underline {   
  font-weight: 400;
  text-decoration: underline;
  }

#hero h3 {
  color: #f8b737;
  font-size: 25px;
  margin: 30px 0 30px 0;
  font-family: "Montserrat", sans-serif;  
}

#hero .hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 4;
}

#hero .hero-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

#hero .hero-checklist-icon {
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 1px;
  width: 28px;
  height: 28px;
}

#hero .hero-checklist-text {
  display: inline-block;
  line-height: 1.25;
}

#hero .hero-checklist-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

#hero h3 .bullet {
  color: #ffffff;
  font-size: 22px;
}

#hero .btn-link-asesoramiento {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  display: inline-block;
  padding: 20px 70px 20px 70px;
  margin-top: 10px;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  line-height: 28px;
  border-radius: 17px;
  transition: 0.5s;
  color: #000000;
  background: #f8b737;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  animation: pulseButton 4s ease-in-out infinite;
  animation-delay: 3s;
}

#hero .btn-link-asesoramiento:hover {
  background: #ffff;
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: none;
}

@keyframes pulseButton {
  0%, 60% {
    background: #f8b737;
    transform: scale(1);
  }
  75% {
    background: #f8b900;
    transform: scale(1.02);
  }
  90%, 100% {
    background: #f8b737;
    transform: scale(1);
  }
}

#hero .btn-link-cotizacion {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  display: inline-block;
  padding: 5px 70px 5px 70px;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  line-height: 28px;
  border-radius: 17px;
  transition: 0.5s;
  color: #f8b737;
  background: #000000;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
}

#hero .btn-link-cotizacion:hover {
  background: #ffff;
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#hero .btn-link + .btn-link {
  margin-left: 20px;
}

#hero .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 4;
}

#hero .hero-cta .btn-link-asesoramiento {
  width: 100%;
  min-width: 0;
  max-width: none;
  display: block;
}

#hero .hero-cta-brand {
  width: min(100%, 360px);
  height: auto;
}

.img-desktop-hero {
  display: block;
  width: 100%;  
  justify-self: center;  
}

#hero .hero-img {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  #hero .col-lg-5 {
    overflow: visible;
  }

  #hero h1 {
    width: var(--hero-h1-width-desktop);
    max-width: none;
  }

  #hero h3 {
    width: var(--hero-h3-width-desktop);
    max-width: none;
  }

  #hero .hero-cta {
    width: var(--hero-cta-width-desktop);
    max-width: none;
  }

  #hero .hero-img {
    margin-left: -20px;
  }
}

.fabricantes-img-mobile {
  display: none;
}

.img-mobile-hero {
  display: none;
}

@media (max-width: 768px) {

  #hero {
    background: linear-gradient(
      to bottom,
      #220000 0%,
      #220000 10%,
      #aa0000 78%,
      #aa0000 100%
    );
    width: 100%;
    padding-top: 0px;
    position: relative;
    overflow: hidden;    
    padding-bottom: calc(100vh - 750px);
    text-align: center;
  }

  #hero .btn-link {    
    font-size: clamp(20px, 3vw, 28px);    
    padding: 12px clamp(25px, 6vw, 50px);
    white-space: nowrap;
  }

  #hero h1 {
    font-size: 29px;
    line-height: 30px;
  }
  

  #hero h3 {
  color: #f8b737;
  font-size: 17px;
  line-height: 15px;
  margin: 0 0 0 0;
  font-family: "Montserrat", sans-serif; 
}

  #hero .hero-checklist {
    align-items: flex-start;
    text-align: left;
    margin: 12px auto 0;
    width: fit-content;
    gap: 8px;
  }

  #hero .hero-checklist-item {
    gap: 8px;
  }

  #hero .hero-checklist-icon {
    width: 22px;
    height: 22px;
  }

  #hero .hero-checklist-text {
    line-height: 1.2;
  }

  #hero .hero-checklist-underline {
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
  }

  .img-desktop-hero {
    display: none;
  }

  .fabricantes-img-mobile {
    justify-self: center;
    display: block;
    width: 80%;
    margin: 10px auto;
  }

  .img-mobile-hero {
    margin: -35px auto -10px;
    display: block;
    width: 100%;
    justify-self: center;
    position: relative;
    z-index: 1;
  }

  #hero .hero-cta {
    align-items: center;
    gap: 8px;
    width: min(100%, 340px);
    margin-left: auto;
    margin-right: auto;
  }

  #hero .hero-cta-brand {
    width: min(100%, 260px);
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #hero .hero-cta .btn-link-asesoramiento {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 19px;
  text-align: center;
  display: block;
  padding: 17px 10px 17px 10px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  line-height: 15px;
  border-radius: 17px;
  transition: 0.5s;
  color: #000000;
  background: #f8b737;
  position: relative;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
}

#hero .btn-link-cotizacion {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 17px;
  text-align: center;
  display: inline-block;
  padding: 10px 20px 10px 20px;
  width: 175px;
  min-width: 175px;
  max-width: 175px;
  line-height: 15px;
  border-radius: 17px;
  transition: 0.5s;
  color: #f8b737;
  background: #000000;
  position: relative;
  text-decoration: none;
}
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  position: relative; 
  overflow: hidden;
}

.section-title {
  padding-top: 40px;
  text-align: center;  
}

.section-title .row {
  margin-bottom: 20px;  
}

.section-title h2 {
  font-size: 35px;
  color: #d40001;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.section-title h2 span{
  font-size: 35px;
  font-weight: 500;  
  color: #4f4d4d;
  font-family: "Montserrat", sans-serif;
}

.section-title p {
  font-size: 22px;
  font-weight: 400;
  margin: 10px 0; 
  color: #585858;
  font-family: "Montserrat", sans-serif;
}

.section-title p strong {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0; 
  color: #585858;
  font-family: "Montserrat", sans-serif;
}

.section-title p .underline {
  text-decoration: underline;
}

.section-title h3 {
  font-size: 25px;
  font-weight: 600;    
  color: #000000;
  font-family: "Montserrat", sans-serif;  
}

.section-title h4 {
  font-size: 22px;
  font-weight: 500;    
  color: #d40001;
  font-family: "Montserrat", sans-serif;  
}

.section-title .row p {
  font-size: 17px;
  font-weight: 400;  
  line-height: 20px;
  color: #4f4d4d;
  font-family: "Montserrat", sans-serif;
}

.section-title .row .box {
  background: #d40001;
  border-radius: 20px;
  padding: 15px 15px 15px 15px;
  width: 80%;
  margin: 0 auto;
}

.section-title .row .box li, .bullet {
  color: #f2cbcc;
  font-size: 17px;
  font-weight: 400;  
  line-height: 20px;  
  font-family: "Montserrat", sans-serif;
}

.section-title .row .box .bullet {
  font-size: 25px;
}

.section-title .row .box .btn-link-asesoramiento {
  background: #ffffff;
  color: #d40001;
  font-weight: 600;
  padding: 5px 30px 5px 30px;
  border-radius: 15px;
}

.section-title-2 h3 {
  font-size: 28px;    
  color: #000000;
  font-family: "Montserrat", sans-serif;  
}

.section-title-2 h3 span {
  font-size: 28px;    
  color: #da121a;
  font-family: "Montserrat", sans-serif;
}

.section-title-2 { 
  text-align: center;
}

#features {
  background: linear-gradient(
    to bottom,
    #cccccc 0%,
    #cccccc 1%,
    #ffffff 6%,
    #ffffff 100%
  );
  padding-bottom: 3px;
}

#features2 {
  background-image: url(../img/background-gea-desktop.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 50;
}

#features .row.no-gutters {
  margin: 0;
}

#features .row .no-gutters img {
  display: block;
  width: 100%;
  height: auto;
}

#features .specs h4 {
  margin-bottom: 5px;
  padding-bottom: 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 30px;
}

#features .specs p {
  margin-top: 10px;
  margin-bottom: 25px;
  color: #666666;
  font-family: Verdana, Geneva, Tahoma, sans-serif, sans-serif;
  font-size: 17px;
}

#features .btn-link {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  padding: 10px 24px 10px 24px;
  border-radius: 7px;
  transition: 0.5s;
  color: #fff;
  background: #d91219;
  position: relative;
  text-decoration: none;
}

#features .btn-link:hover {
  background: #aa0d14;
}

#features2 .row .no-gutters {
  margin: 0;
}

#features2 .row.no-gutters img {
  display: block;
  width: 100%;
  height: auto;
}

#features2 .specs {
  margin: 0;
  margin-bottom: 5px; 
  padding-bottom: 40px;
  width: 100%;   
  position: relative; 
}

#features2 .specs h2 {
  text-align: center;
  color: #ffff;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  margin-bottom: 20px;
  padding: 20px 0 20px 0;
}

#features2 .specs h2 strong {
  color: #fc0005;
}

#features2 .specs h2 .underline {
  text-decoration: underline;
  color: #ffffff;
}

#features2 .specs h4 {
  padding-top: 10px;
  margin-bottom: 2px;
  color: #fc0005;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
}

#features2 .specs h4 span {
  color: #fff;
}

#features2 .specs p {
  padding-top: 5px;
  margin-bottom: 25px;
  padding-bottom: 0;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 15px;
}

#features2 .specs p span {
  text-decoration: underline;
}

#features2 .btn-link {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  padding: 10px 24px 10px 24px;
  border-radius: 7px;
  transition: 0.5s;
  color: #ffffff;
  background: #d40001;
  position: relative;
  text-decoration: none;
}

#features2 .btn-link:hover {
  background: #ffffff; 
  color: #000000; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

.icon-text-container img {
  margin-right: 10px;
}

#features2 .items-boxes{
  justify-content: center;
  align-items: center;
  text-align: center;
}

#features2 .items-boxes .icon-box picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

#features2 .items-boxes .icon-box img {
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  section {
    padding-top: 5px;
    height: fit-content;
    overflow: hidden;
  }

  .section-title h2 {
  font-size: 25px;
  color: #d40001;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  }

  .section-title h2 span{
  font-size: 25px;
  font-weight: 500;  
  color: #4f4d4d;
  font-family: "Montserrat", sans-serif;
  }

  .section-title p {
  font-size: 18px;  
}

.section-title p strong {
  font-size: 18px;  
}

.section-title .row p {
  font-size: 16px;
  font-weight: 400;  
  line-height: 20px;
  color: #4f4d4d;
  font-family: "Montserrat", sans-serif;
}

.section-title .row .box {
  background: #d40001;
  border-radius: 20px;
  padding: 15px 15px 15px 15px;
  width: 100%;
  margin-bottom: 20px;
}

.section-title .row .box li, .bullet {
  color: #f2cbcc;
  font-size: 17px;
  font-weight: 400;  
  line-height: 20px;  
  font-family: "Montserrat", sans-serif;
}

.section-title .row .box .bullet {
  font-size: 25px;
}

#features2 .specs h2 {
    font-size: 26px;
  }

#features2 .specs .btn-link {
  margin-top: 10px; 
}

#features2 .specs .info-box {
  padding-bottom: 60px;
}

#features2 .specs p {    
  margin-bottom: 5px;    
}

#features2 {
  background-image: url(../img/background-gea-mobile.webp);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 50;
}

.icon-text-container img {
  margin-bottom: 0px;
  width: 80px;
}
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

#faq {
  padding-bottom: 30px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px 0;
  background: linear-gradient(
    to bottom,
    #220000 15%,
    #220000 15%,
    #d40001 70%,
    #d40001 100%
  );
}

#contact h2 {
  text-align: center;
  font-size: 35px;
  font-family: "Montserrat";
  color: #ffff;
}

#contact h2 .hablemos {
  text-align: center;
  font-weight: bold;
  font-size: 35px;
  font-family: "Montserrat";
  color: #d40001;
}

#contact p {
  color: #ffff;
  text-align: left;
  font-size: 20px;
  font-family: "Montserrat";
}

#contact span {
  color: #ffcc00;
  font-size: 20px;
}

#contact .divider {
  width: 100%;
  height: 1.7px;
  background: linear-gradient(
    to right,
    rgba(89, 156, 175, 0),
    #d40001,
    rgba(89, 156, 175, 0)
  );
  position: relative;
  margin: 30px 0;
}

#contact .php-email-form {
  width: 100%;
}

#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: #ffff;
  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;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form label {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  color: #fff;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 7px;
  border: 1px solid #000000;
  box-shadow: none;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  border-color: #ffffff;
}

#contact .btn-link:focus {
  outline: none; 
  box-shadow: 0 0 0 3px rgb(255, 255, 255);
  color: #ffffff;
}

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

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

@media (max-width: 1024px) {
  #contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  #contact h2 {
    text-align: center;
    font-size: 25px;
    font-family: "Montserrat";
    color: #ffff;
  }

  #contact h2 .hablemos {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    font-family: "Montserrat";
    color: #d40001;
  }  

  #contact .php-email-form {
    padding: 15px 0 0 0;
  }

  #contact .footer-image {    
    margin-top: 15px;    
  }

}

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

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

#contact .btn-link {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 19px;
  display: inline-block;
  padding: 10px 100px 10px 100px;
  border-radius: 15px;
  transition: 0.5s;  
  background: #000000;
  color: #ffa200;
  position: relative;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

#contact .btn-link:hover {
  background: #ffffff;
  color: #000000;
  border-radius: 15px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  position: relative;
  width: 100%;
  height: auto;   
  background: #d40001;
}

.copyright {  
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #ffffff;  
}

.private-policy, a {  
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000000;
}

.private-policy a {  
  text-decoration: underline;
  }

  .private-policy a:hover {  
    color: #ffffff;
}

.whatsapp-button {
  position: fixed;
  bottom: 12px;
  right: 70px;
  z-index: 1000;
  display: none;
  animation: bounce 2s infinite;
}

.whatsapp-button img {
  width: 60px;
  height: 60px;
  transition: all 0.4s;
}

.whatsapp-button img:hover {
  width: 70px;
  height: 70px;
}

@media (max-width: 768px) {
  .copyright {
    font-size: 13px;
  }

  .private-policy, a {
    font-size: 13px;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
