body {
	font-family: 'Open Sans', sans-serif !important;
}

.texto{
  background: #2079b0;
  background-image: -webkit-linear-gradient(top, #2079b0, #eb94d0);
  background-image: -moz-linear-gradient(top, #2079b0, #eb94d0);
  background-image: -ms-linear-gradient(top, #2079b0, #eb94d0);
  background-image: -o-linear-gradient(top, #2079b0, #eb94d0);
  background-image: linear-gradient(to bottom, #2079b0, #eb94d0);


font-family: 'Open Sans', sans-serif !important;
  color: #fafafa;
  font-size: 20px;
  padding: 19px;
  text-decoration: none;
  top: 25px;
  height: 70px;
}

@media screen and (max-width: 1100px) {
  .texto {
    font-size: 18px;
  }
}

@media screen and (max-width: 990px) {
  .texto {
    font-size: 16.5px;
  }
}

@media screen and (max-width: 800px) {
  .texto {
    font-size: 15px;
  }
}

@media screen and (min-width: 551px) {
  #pleca {
    display: block !important;
  }
  #pleca-phone {
    display: none !important;
  }
}

@media screen and (max-width: 550px) {
  #pleca {
    display: none !important;
  }
  #pleca-phone {
    display: block !important;
  }
  h6{
    font-size: 0.85rem !important;
  }
  h5{
    font-size: 1.10rem !important;
  }
}


.background{
  border: 1px solid transparent; 
  background-color: #fff3cd;
  border-color: #ffeeba;
  border-radius: 0.25rem; 
  padding: 13px;
}


/* Accordion styles */
 .tabs {
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}
 .tab {
   width: 100%;
   color: black;
   overflow: hidden;
}
 .tab-label {
   display: flex;
   justify-content: space-between;
   padding: 1em;
   background: #a8aae369;
   font-weight: ;
   cursor: pointer;
  /* Icon */
}
 .tab-label:hover {
   /*background: #1a252f;*/
}
 .tab-label::after {
   content: "\276F";
   width: 1em;
   height: 1em;
   text-align: center;
   transition: all 0.35s;
}
 .tab-content {
   max-height: 0;
   padding: 0 1em;
   color: #2c3e50;
   background: white;
   transition: all 0.35s;
}
 .tab-close {
   display: flex;
   justify-content: flex-end;
   padding: 1em;
   font-size: 0.75em;
   background: #2c3e50;
   cursor: pointer;
}
 .tab-close:hover {
   background: #1a252f;
}
 input:checked + .tab-label {
   background: #a8aae369;
}
 input:checked + .tab-label::after {
   transform: rotate(90deg);
}
 input:checked ~ .tab-content {
   max-height: 100vh;
   padding: 1em;
}

.hidden-check {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.button {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
  text-shadow: 0 1px 0 hsla(0, 0%, 0%, 0.2);
  text-decoration: none !important;
  text-transform: uppercase;
  color: #fff !important;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 0 3px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}
.button:active {
  -webkit-transform: translateY(7px);
  -moz-transform: translateY(7px);
  -o-transform: translateY(7px);
  transform: translateY(7px);
}

.button-blue {
  background: #1E90FF;
  box-shadow: 0 10px 0 #005ab2,
    0 11px 5px hsla(0, 0%, 0%, 0.5);
}
.button-blue:active {
  box-shadow: 0 3px 0 #005ab2,
    0 4px 6px hsla(0, 0%, 0%, 0.7);
}

.form-check {
  padding-left: 2.7rem !important;
  font-size: 18px !important;
}

.form-check-input {
  margin-top: .39rem !important;
  margin-left: -1.10rem !important;
}

input[type="radio"]{
   transform: scale(1.3); 
}

.loading {
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3; /* Gris claro */
  border-top: 2px solid #3498db; /* Azul */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}