body {
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}


p {
  margin-bottom: 15px;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

.destacado {
  font-weight: bold;
  color: #000;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}



.fondo-azul {
  background-color: #e9eef1;
  width: 100%;
  padding: 30px 0;
}

.datos {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  background-color: #e9eef1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px;
}

.dato {
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 20px;
  height: 250px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.dato img {
  width: 60px;
  background-color: #fff;
  border-radius: 30px;
  margin-top: -50px;
}

.caracteristicas{
  font-size: 20px;
  font-weight: 700;
}


@media screen and (max-width: 768px) {
  .datos {
    grid-template-columns: 1fr;
  }

  .dato {
    width: 100%;
  }
}

.experiencia {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.experiencia .item {
  flex: 1 1 22%;
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
}

.servicios {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url("https://digitalstest.cl/landing-fidelogist/img/fidelogist-fondo.png");
  background-size: cover;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  color: white;
  z-index: 1;
  overflow: hidden;
}

.servicios::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.627); 
  z-index: 0;
}

.servicios .contenido {
  position: relative;
  z-index: 1; 
  max-width: 800px;
}

.nuestros-servicios{
  color: white;
  font-size: 50px;
}

.contenido-servicios{
  font-size: 19px;
}

.titulo-recompensa {
  font-size: 50px;
  color: #f96931;
  text-align: center;
}

.tarjeta {
  width: 100%;
  max-width: 500px;
}

#tarjeta-invertida {
  width: 500px;
}


.recompensa {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
}

.imagen-recompensa,
.texto-recompensa {
  flex: 1;
}

.texto-recompensa {
  font-size: 18px;
  text-align: center;
}

.fidelogist {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: 500;
  color: #3fafc3;
}

.recompensas {
  padding: 40px 20px;
}

.btn-2 {
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #f96931;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 17px;
  display: inline-block;
}

.btn-2:hover {
  color: #fff;
}

.contacto-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.recompensa-invertida {
  flex-direction: row-reverse;
}


@media (max-width: 768px) {
  .recompensa,
  .recompensa-invertida {
    flex-direction: column;
    text-align: center;
  }

  .titulo-recompensa {
    font-size: 36px;
  }

  #tarjeta-invertida{
    display: none;
  }
}

@media (max-width: 480px) {
  .titulo-recompensa {
    font-size: 28px;
  }

  .btn-2 {
    padding: 10px 20px;
    font-size: 16px;
  }
}

.wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 10% 0;
}
.review-card {
	background-color: #f5f5f5;
	border-radius: 10px;
	padding: 20px;
	width: 300px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}
.img-area {
	width: 100px;
	height: 100px;
  overflow: hidden;
	margin-right: 25px;
}
.img-area img {
	width: 100%;
  border-radius: 30px;
}
.header-content {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.info h4 {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
}
.info p {
	margin: 5px 0 0;
	font-size: 14px;
	font-weight: 400;
	color: #666;
}
.single-review p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}
.review-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	font-size: 14px;
	color: #666;
}
.rating {
	display: flex;
}
.rating span {
	color: #000;
	font-size: 18px;
}
.rating span.active {
	color: #fbc02d;
}
@media screen and (max-width: 767px) {
	.wrapper {
		flex-direction: column;
		align-items: center;
	}
	.review-card {
		width: 85%;
	}
}


.clientes {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;

}

.titulo-clientes {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
}

.galeria-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.logo img {
  max-width: 200px;
  height: auto;
}


@media screen and (max-width: 1024px) {
  .galeria-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .galeria-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo img {
    max-width: 150px;
}
}



.titulo-clientes {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.linea-separadora {
  width: 60px;
  height: 2px;
  background-color: #333;
  margin: 0 auto 30px auto;
}



.contact-container {
  padding: 60px 0;
}


.contact-title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}


.waituk_contact-form .form-group {
  margin-bottom: 20px;
}

.waituk_contact-form .form-control {
  border: 1px solid #ccc;
  padding: 14px;
  font-size: 14px;
  width: 100%;
  border-radius: 4px;
}


.waituk_contact-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.waituk_contact-form .col-md-6 {
  flex: 1 1 48%;
}


.waituk_contact-form textarea.form-control {
  height: 150px;
  resize: vertical;
}


.btn-container {
  text-align: left;
  margin-top: 10px;
}

.btn-arrow {
  background-color: #30869d;
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.btn-arrow:hover {
  background-color: #528fa0;
  cursor: pointer;
}

.info-slot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.info-slot .icon {
  font-size: 30px;
  margin-right: 15px;
  color: #444;
}

.info-slot .text {
  font-size: 14px;
  color: #333;
}

.info-slot address,
.info-slot .contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.6;
}

.contact-list a {
  color: #555;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.label-text {
  font-weight: 600;
  font-size: 13px;
  color: #888;
}

@media (max-width: 768px) {
  .waituk_contact-form .col-md-6 {
    flex: 1 1 100%;
  }

  .btn-container {
    text-align: center;
  }

  .info-slot {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-slot .icon {
    margin-bottom: 10px;
  }
}


.custom-btn{
  background-color: #30869d ;  
}

.custom-btn:hover{
  background-color: #528fa0 ;  
  color: white;
}

.custom-btn-v2{
  background-color: #f96931;  
  color: white;
}

.custom-btn-v2:hover{
  background-color: #fb8c60;  
  color: white;
}

.correo{
  display: flex;
  text-align: start;
  justify-content: start;
}

.btn-container{
  display: flex;
  justify-content: start;
  align-items: start;
  margin-top: 20px;
}

.carta{
  width: 20%;
}

.text{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
}