



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url('../fonts/montserrat/Montserrat-SemiBold.ttf'); 
}

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf'); 
}


/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}


label {
  display: block;
  margin: 0;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ utility ]*/

/*==================================================================
[ Text ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 15px;
  line-height: 1.6;
  color: #999999;
}

.txt3 {
  font-family: Poppins-Regular;
  font-size: 15px;
  line-height: 1.6;
  color: #00ad5f;
}

/*==================================================================
[ Size ]*/
.size1 {
  width: 355px;
  max-width: 100%;
}

.size2 {
  width: calc(100% - 43px);
}

/*==================================================================
[ Background ]*/
.bg1 {background: #3b5998;}
.bg2 {background: #1da1f2;}
.bg3 {background: #cd201f;}


/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-contact100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  
}

.wrap-contact100 {
  width: 100%;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;

}

/*==================================================================
[ Contact more ]*/
.contact100-more {
  width: calc(100% - 560px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 30px 15px 0px 15px;
}

.contact100-more::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.1);
}



/*==================================================================
[ Form ]*/

.contact100-form {
  width: 560px;
  min-height: 100vh;
  display: block;
  padding: 110px 55px 55px 55px;
}

.contact100-form-title {
  width: 100%;
  display: block;
  font-family: Poppins-Regular;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 48px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  margin-bottom: 20px;
}

.label-input100 {
  font-family: Montserrat-SemiBold;
  font-size: 11px;
  color: #666666;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 15px 0 2px 24px;
}

.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-family: Montserrat-Regular;
  font-size: 18px;
  color: #404b46;
  line-height: 1.2;
  padding: 0 26px;
}

input.input100 {
  height: 48px;
}

textarea.input100 {
  min-height: 130px;
  padding-top: 14px;
  padding-bottom: 15px;
}

/*---------------------------------------------*/

.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid #6675df;
  border-radius: 10px;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -moz-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  -o-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.eff-focus-selection {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
}

.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #6675df;

  font-family: Montserrat-Bold;
  font-size: 12px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn:hover {
  background: #404b46;
}



/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  .contact100-form {
    width: 50%;
    padding: 110px 30px 55px 30px;
  }

  .contact100-more {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .contact100-form {
    width: 100%;
  }

  .contact100-more {
    display: none;
  }
}

@media (max-width: 576px) {
  .contact100-form {
    padding: 110px 15px 55px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}



/*==================================================================
[ Social ]*/
.contact100-form-social {
  padding-top: 100px;
}

.contact100-form-social-item {
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #fff;
  border-radius: 50%;
}

.contact100-form-social-item:hover {
  background: #404b46;
  color: #fff;
}


/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/

.select2-container {
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.select2-container .select2-selection--single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  height: 48px;
  outline: none;
  position: relative;
}

/*------------------------------------------------------------------
[ in select ]*/
.select2-container .select2-selection--single .select2-selection__rendered {
  font-family: Montserrat-Regular;
  font-size: 18px;
  color: #404b46;
  line-height: 1.2;
  padding-left: 26px;
  background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 20px;
  height: 100%;
  top: 45%;
  transform: translateY(-50%);
  right: 19px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}


.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-top-color: #404b46;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-bottom-color: #404b46;
}



/*------------------------------------------------------------------
[ Dropdown option ]*/
.select2-container--open .select2-dropdown {
  z-index: 1251;
  width: calc(100% + 2px);
  border: 0px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  left: -2px;

  box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.select2-dropdown--above {top: -34px;}
.select2-dropdown--below {top: 2px;}

.select2-container .select2-results__option[aria-selected] {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 26px;
}

.select2-container .select2-results__option[aria-selected="true"] {
  background: #6675df;
  color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
  background: #6675df;
  color: white;
}

.select2-results__options {
  font-family: Montserrat-Regular;
  font-size: 18px;
  color: #404b46;
  line-height: 1.2;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  font-family: Montserrat-Regular;
  font-size: 18px;
  color: #404b46;
  line-height: 1.2;
}

.wrap-input100 .dropDownSelect2 .select2-container--open {
  width: 100% !important;
}

.wrap-input100 .dropDownSelect2 .select2-dropdown {
  width: calc(100% + 2px) !important;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
	margin-left: 160px;
	margin-top: 240px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*NEW STYLES*/
*{
	box-sizing: border-box;
}
/*header*/
.back-container{
	overflow: hidden;
}
.container {
        display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top:52px;
		width: 100%;
		padding-left:0;
		padding-right:0;
		z-index:99999;
		position: relative;
		border-bottom: 1px solid #fff;
		padding-bottom: 22px;
    }
	.container h1{
		font-family: "Inter";
		font-weight: 900;
    	color: #fff;
    	font-size: 50px;	
	}

	ul.menu{
		display: flex;
    	justify-content: stretch;
		list-style: none;
	}
.menu-item a{
	font-family: "Inter", sans-serif;
	font-size:18px;
	font-weight:600;
	color: #fff;
	padding: 5px 17px;
	display: inline-block;
	text-transform: uppercase;
}
video{
	 width: 100%;
	 margin-top: -130px;
}
.video-text{
	position:relative;
	
}
.video-text h2{
	text-align: center;
    color: #fff;
    font-family: 'Inter';
    font-style: italic;
    font-weight: 900;
    font-size: 50px;
	position: relative;
	top:-150px;
}
.bloque-que-es{

	background:#28252C;
	padding-top:100px;
	padding-bottom: 50px;
	margin-top: -63px;
	
}
.bloque-que-es .text-container{
	width:50%;
}
h2.raya{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    line-height:35px;
	font-family: "Inter", sans-serif;
	margin-bottom: 25px;
}
h2.raya span{
    display:inline-block;
    height:2px;
    background: #fff;
    width: 45px;
    position: relative;
    top: -12px;
    margin-right:20px;    
}
.bloque-que-es h3{
	color: #fff;
    font-size: 50px;
    font-weight: 900;
    line-height:50px;
	font-family: "Inter", sans-serif;
	margin-bottom:25px;
}
.bloque-que-es p{
	color: #DEDDDD;
	font-size: 18px;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	line-height: 22px;
}
.flat-button{
	border:1px solid #fff;
	color: #fff!important;
	font-size: 18px;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	line-height: 22px;
	text-transform: uppercase;
	text-decoration: underline!important;
	text-underline-offset: 5px;
	padding: 18px 12px;
	display: inline-block;
    margin-top: 30px;
	cursor: pointer;

}
.flat-button.flat-button-black{
	border:1px solid #000;
	color: #000!important;
	min-width: 90px;
    text-align: center;
	margin-top: 20px;

}

/*pulsar*/
@keyframes pulso{
            0% {
                transform: scale(0.9);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(0.9);
            }
        }
.container-pulsar{
	position: relative;
    top: 65px;
    right: -23%;
    display: block;
    width: 50%;
  
}
.circle-pulsar {
border-radius:100%;
border:2px solid #ededed;
display:block;
position:absolute;
animation: pulso 4s infinite;
}
.circle-1{
height:75px;
width:75px;
top:50px;
left:50px;
opacity:1;
}
.circle-2{
height:95px;
width:95px;
top:40px;
left:40px;
  opacity:0.8;
animation-delay: 0.1s;
}
.circle-3{
height:130px;
width:130px;
  
top:24px;
left:24px;
    animation-delay: 0.2s;
  opacity:0.7;

}
.circle-4{
height:190px;
width:190px;
  
top:-6px;
left:-6px;
animation-delay: 0.4s;
  
  opacity:0.5;
}
.circle-5{
height:275px;
width:275px;
top:-47px;
left:-47px;
  animation-delay: 0.6s;
  
  opacity:0.3;
}
.circle-6{
height:395px;
width:395px;
top:-105px;
left:-105px;
  animation-delay: 0.8s;
  
  opacity:0.1;
}


/*bloque faq*/
.bloque-faq{
	background-color: #DEDDDD;
	padding-top:83px;
	padding-bottom: 58px;
}
.bloque-faq .container-width{
	display: flex;
	justify-content: center;
	grid-gap: 5%;
	flex-wrap: wrap;
	align-items: flex-start;
}
.bloque-faq img{
	width: 49%;
}
.bloque-faq	.text-container{
	width: 46%;
}
.bloque-faq	.text-container .faq-question{
	color: #28252C;
    font-size: 30px;
    font-weight: 900;
    line-height:30px;
	font-family: "Inter", sans-serif;
	margin-bottom:12px;
}
.bloque-faq	.text-container .faq-answer{
	color: #28252C;
	font-size: 18px;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 27px;
}
.bloque-faq	.text-container .faq-answer-list{
	color: #28252C;
	font-size: 18px;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	line-height: 22px;
	list-style-type: "*";
	margin-bottom: 27px;
	margin-left: 20px;
}
.bloque-faq	.text-container .faq-answer-list li{
	list-style: unset!important;
	padding-left: 5px;
}
.bloque-footer{
	background: #28252C;
    padding-top:40px;
    padding-bottom: 52px;
	text-align: center;

}
.bloque-footer .logo{
	font-family: "Inter";
    font-weight: 900;
    color: #fff;
    font-size: 50px;
	margin-bottom: 16px;
}
.bloque-footer .claim{
	font-family: "Inter";
    font-weight: 900;
    color: #fff;
    font-size: 30px;
	font-style: italic;
	margin-bottom: 60px;
}
.bloque-footer p, .bloque-footer p a{
	color: #DEDDDD;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 22px;
}
/*media*/
@media (min-width: 786px) {
    .container-width {
        max-width: 1160px;
        display: flex;
		margin-left: auto;
		margin-right: auto;
    }

}


/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Cambia a diseño vertical */
    align-items: center; /* Centra los elementos */
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: none; 
    padding-bottom: 10px;
  }

  .container h1 {
    font-size: 55px; 
    text-align: center;
    margin-bottom: 10px;
    color: #000;
  }

  ul.menu {
    flex-direction: column; 
    align-items: center;
    margin: 15px 0;
  }

  .menu-item a {
    font-size: 16px; 
    padding: 10px; 
    color: #fff;
    text-align: center;
  }
.body-index .menu-item a{
  color: #000;
}
  video {
    margin-top: 0; 
    width: 100%;
    height: auto; 
  }

  .video-text h2 {
    font-size: 24px; 
    top: -120px; 
    padding: 0 10px; 
    color: whitesmoke;
  }
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  .bloque-que-es {
    background: #28252C;
    padding-top: 50px; /* Reduce el espacio superior */
    padding-bottom: 30px; /* Reduce el espacio inferior */
    margin-top: -30px; /* Ajusta el margen para móviles */
  }

  .bloque-que-es .text-container {
    width: 100%; /* Asegura que ocupe todo el ancho */
    text-align: center; /* Centra los textos */
    padding: 0 15px; /* Agrega espacio lateral */
  }

  h2.raya {
    font-size: 24px; /* Reduce el tamaño del texto */
    line-height: 28px; /* Ajusta el espaciado */
    color: white; /* Cambia el color a negro */
  }

  h2.raya span {
    width: 30px; /* Reduce la longitud de la raya */
    margin-right: 10px; /* Ajusta el margen derecho */
  }

  .bloque-que-es h3 {
    font-size: 28px; /* Reduce el tamaño del texto */
    line-height: 32px; /* Ajusta el espaciado */
    margin-bottom: 20px;
    color: white; /* Cambia el color a negro */
  }

  .bloque-que-es p {
    font-size: 16px; /* Reduce el tamaño del texto */
    line-height: 20px; /* Ajusta el espaciado */
    color: white; /* Cambia el color a negro */
    margin-bottom: 20px; /* Espaciado entre párrafos */
  }

  .flat-button {
    font-size: 16px; /* Reduce el tamaño del texto */
    padding: 12px 8px; /* Ajusta el relleno del botón */
    margin-top: 20px; /* Reduce el margen superior */
    text-align: center; /* Centra el texto dentro del botón */
  }

  .flat-button.flat-button-black {
    border: 1px solid #000000; /* Asegura el color negro para el borde */
    color: #000000 !important; /* Cambia el texto del botón a negro */
    margin-top: 15px; /* Ajusta el espaciado superior */
    font-size: 16px; /* Tamaño más pequeño para móviles */
    text-align: center; /* Centra el texto dentro del botón */
    
  }
  .text-container {
    text-align: center; /* Asegura que todo dentro del contenedor esté centrado */
}
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  .bloque-que-es {
    padding-top: 50px; /* Reduce el espacio superior */
    padding-bottom: 30px; /* Reduce el espacio inferior */
    margin-top: -30px; /* Ajusta el margen para móviles */
  }

  .bloque-que-es .text-container {
    width: 100%; /* Asegura que ocupe todo el ancho */
    text-align: center; /* Centra los textos */
    padding: 0 15px; /* Agrega espacio lateral */
  }

  h2.raya {
    font-size: 24px; /* Reduce el tamaño del texto */
    line-height: 28px; /* Ajusta el espaciado */
    margin-bottom: 20px;
  }

  h2.raya span {
    width: 30px; /* Reduce la longitud de la raya */
    margin-right: 10px; /* Ajusta el margen derecho */
  }

  .bloque-que-es h3 {
    font-size: 28px; /* Reduce el tamaño del texto */
    line-height: 32px; /* Ajusta el espaciado */
    margin-bottom: 20px;
  }

  .bloque-que-es p {
    font-size: 16px; /* Reduce el tamaño del texto */
    line-height: 20px; /* Ajusta el espaciado */
    margin-bottom: 15px; /* Espaciado entre párrafos */
  }

  .flat-button {
    font-size: 16px; /* Reduce el tamaño del texto */
    padding: 12px 8px; /* Ajusta el relleno del botón */
    margin-top: 20px; /* Reduce el margen superior */
    text-align: center; /* Centra el texto dentro del botón */
  }

  .flat-button.flat-button-black {
    border: 1px solid #000; /* Mantiene el borde negro */
    margin-top: 15px; /* Ajusta el espaciado superior */
    font-size: 16px; /* Tamaño más pequeño para móviles */
    min-width: 80px; /* Asegura una buena proporción del botón */
    text-align: center; /* Centra el texto dentro del botón */
  }
}
@media (max-width: 768px) {
  .container-pulsar {
    display: none; /* Oculta los círculos */
}
.bloque-faq .container-width {
  flex-direction: column;
  align-items: center;
  grid-gap: 20px;
}

.bloque-faq img {
  width: 80%;
  margin-bottom: 20px;
}

.bloque-faq .text-container {
  width: 100%;
  padding: 0 15px;
}

.bloque-faq .text-container .faq-question {
  font-size: 24px;
}

.bloque-faq .text-container .faq-answer,
.bloque-faq .text-container .faq-answer-list {
  font-size: 16px;
  line-height: 20px;
}

.bloque-footer .logo {
  font-size: 35px;
}

.bloque-footer .claim {
  font-size: 20px;
}

.bloque-footer p,
.bloque-footer p a {
  font-size: 14px;
}

.bloque-faq	.text-container .faq-answer-list{
  list-style: none; /* Elimina los marcadores de la lista */
  margin-left: 0; /* Opcional: elimina la indentación del contenedor */
}
.bloque-faq	.text-container .faq-answer-list li{
  list-style: none;
  padding-left: 0px;
}
.bloque-video{
  position: relative;
}
.bloque-video .video-text{
  position: absolute;
}
}
#floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  padding: 27px 20px;
  font-weight: 500;
  color: white;
  background-color: #222327;
  border: 2px solid white;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  z-index: 9999;
}
/*COOKIES*/
.termsfeed-com---palette-light .cc-cp-foot-save,
.termsfeed-com---palette-light .cc-nb-okagree,
.termsfeed-com---palette-light .cc-nb-reject{
    background-color: #28252c!important;
}
@media(max-width:700px){
    .termsfeed-com---nb-simple {
    min-width: 100%;
    }
}