h1{
font-size: 3.2rem !important;
}
.quote-process {
background-color: #F0F5E7;
}

.quote-process .container {
max-width: 800px;
}

.quote-process h2 {
color: #3c3c3c;
}

.step-box {
text-align: center;
margin-bottom: 20px;
}

.step-box .circle {
    width: 100px;
    height: 100px;
    background-color: #a3cf3f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    font-size: 30px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 4px solid #ffffff78;
}
.step-box .circle h3{
      margin-top: 16px;
}
.step-box .circle:hover,
.step-box .circle:active {
    transform: scale(1.05);
    opacity: 0.9; /* Añade una ligera transparencia */
}

.step-box {
    position: relative;
}

.step-box:before,
.step-box:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background-color: #a3cf3f;
    z-index: -1;
}

.step-box:before {
    left: -100px;
}

.step-box:after {
    right: -100px;
}

.step-box:first-child:before {
    display: none;
}

.step-box:last-child:after {
    display: none;
}

@media (max-width: 768px) {
    .step-box:before,
    .step-box:after {
        display: none;
    }
}


.step-box p {
color: #3c3c3c;
font-size: 18px;
font-weight: 500;
}

.services {
    position: relative;
}

.service-box {
    text-align: center;
    margin-bottom: 20px;
}

.service-box img {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.service-box img:hover,
.service-box img:active {
    transform: scale(1.05);
    opacity: 0.9; /* Añade una ligera transparencia */
}

.btn-consulta{
  width: 100%;
  background-color: #86b33e;
  color:#FFF;
  border: 1px solid transparent;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 14px;
}

.btn-consulta img:hover,
.btn-consulta img:focus,
.btn-consulta img:active,
button:focus {
    border: 1px solid transparent;
    outline: 0px auto -webkit-focus-ring-color !important;
}


.btn-cotiza-index{
  background-color: var(--color-azul) !important;
  margin-top: 20px;  
  margin-right: 24px;
  border-radius: 14px;
  width: 100% !important;
  max-width: 100% !important;
  padding: 10px !important;
  font-size: 0.8rem !important;
  display: none !important;

}

.truck-container {
    position: relative;
    overflow: hidden;
    height: 300px; /* Ajusta la altura según sea necesario */
    top: -70px;
    cursor: pointer;
}

.truck-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    max-width: 380px;
    animation: appearFromRight 5s ease-out forwards; /* Inicia con la aparición desde la derecha */
}

@keyframes moveLeftAndDisappear {
    0% {
        right: 0;
        opacity: 1;
    }
    100% {
        right: 100%;
        opacity: 0;
    }
}

@keyframes appearFromRight {
    0% {
        right: -100%;
        opacity: 0;
    }
    100% {
        right: 0;
        opacity: 1;
    }
}


.img-contacto{
  max-height: 480px;
  border-radius: 8px;
}
.form-group label{
    font-size: 0.7rem !important;
    margin: 6px 0px !important;
}

.select2-container {
    width: auto;
    display: block;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    font-size: 0.8rem !important;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    box-shadow: none;
    transition: border-color 0.3s ease;
    height: auto;

    padding: 4px 12px !important;
    margin-bottom: 0;
    border-radius: 30px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered{
}


@media (min-width: 768px) and (max-width: 991.98px)  {
    h1{
      font-size: 2.4rem !important;
    }
    h2{
        font-size: 2.0rem !important;
    }
    h3{
        font-size: 1.45rem !important;
    }
    .service-box h3{
      font-size: 1.15rem !important;
    }
    p{
      font-size: 0.9rem !important;
    }
    .text-tiny{
        font-size: 0.6rem;
        color:#909091;
    }
    .social-navbar {
      top: 76px;     
    }
    .btn-cotiza{
      display: none;
    }
    .btn-cotiza-index{
      display: block;
    }
    .truck-image{
        max-width: 1200px;
        width: 100%;        
    }

}

@media (max-width: 576px) {
    h1{
      font-size: 2.4rem !important;
    }
    h2{
        font-size: 1.2rem !important;
    }
    h3{
        font-size: 1.0rem !important;
    }
    .service-box h3{
      font-size: 0.8rem !important;
    }
    p{
      font-size: 0.6rem !important;
    }
    .text-tiny{
        font-size: 0.6rem;
        color:#909091;
    }
    .social-navbar {      
      top: 76px !important;
    }
    .quote-form .form-group {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .btn-cotiza-index{
      display: block !important;
    }
    .btn-cotiza{
      display: none !important;
    }
    .truck-image{
        max-width: 1200px;
        width: 100%;        
    }
    
}


