@charset "UTF-8";
/* CSS Document */

* {color: white; scroll-margin-top: 80px;}
html {scroll-behavior: smooth;}
body {background: var(--dark); overflow-x: hidden}

.titulo1 {font-size: var(--hero); color: var(--white); font-family: var(--titulo) }
.titulo2 {font-size: var(--title); color: var(--white); font-family: var(--titulo) }
.titulo3 /*color negro*/ {font-size: var(--title); color: var(--dark); font-family: var(--titulo); border: 0px solid orange; margin: 0}
.parrafo {font-size: var(--paragraph); color: var(--white); font-family: var(--parrafo)}
.parrafo2 /*color negro*/{font-size: var(--paragraph); color: var(--dark); font-family: var(--parrafo); border: 0px solid orange; margin: 0; }

.parrafo,  .parrafo2 {text-align: justify}

.red-color {color: var(--red)}
mark.custom-highlight { background-color: var(--dark); color: var(--red);padding: 5px}
#questionmark {margin: 0 0 10px 0}

ul li ,ul li a {text-decoration: none; list-style-type: none;}

.flex-column {display: flex; flex-direction: column; justify-content: center; align-items: center; gap:10px}
.flex-row {display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 30px; border: 0px solid red}
.width-fit {width: 90%; margin: 0 auto}

.btn-xbit2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: var(--btn-padding);
  margin: 5px;
  z-index: 1;
  background: var(--red);
  border: 0px solid var(--red);
  border-radius: var(--btn-radius);
  color: var(--white);
  font-family: var(--titulo) , sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.btn-xbit2:hover {background: var(--nl-red); transform: scale(1.05)}

.container-hero {background-color: var(--dark);}

.img-hero, .img-hero2, .img-hero3, .img-hero4 {
	width: 100%;
	height: 200px;
	background-size: cover;
	object-fit: cover;
	background-position: center;
	opacity: 0.3;
}

.img-hero {background-image: url("../media/bg-interactivo.jpg");}
.img-hero2 {background-image: url("../media/bg-mkt.jpg");}
.img-hero3 {background-image: url("../media/bg-tecnologia.jpg");}
.img-hero4 {background-image: url("../media/bg-culture.jpg");}

.header-services {
	width: 100%;
	min-height: 400px;
	padding: 60px 10%;
	background: #2A7B9B;
	background: linear-gradient(0deg, rgba(42, 123, 155, 1) 0%, rgba(255, 0, 0, 1) 100%);
}

.header-services ul {font-family: var(--titulo)}
.header-services ul li {transition: transform 0.3s ease-in-out;}
.header-services ul li:hover{transform: scale(1.05);}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  color: var(--white);
  font-size: inherit;
  gap: 10px;
  margin: 5px;
}

.material-symbols-outlined:hover {animation: smooth-shake 1s ease-in-out;}

.service-section {background-color: var(--white); color: var(--dark); min-height: 400px; padding: 30px; width: 100%}
.cta-section {margin: 30px 0}

.section-title {text-align: center; margin: 20px 0 40px 0; font-size: var(--hero);}

@keyframes smooth-shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(5px); }
  50% { transform: translateY(-5px); }
  75% { transform: translateX(5px); }
  100% { transform: translateY(0); }
}

/* FAQ ACCORDION */

.faq-list {
	max-width: 900px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item {
	background: var(--dark);
	border-radius: 10px;
	padding: 5px 25px;
	border-left: 4px solid var(--red);
	transition: background 0.3s ease-in-out;
}

.faq-item[open] {background: var(--dark);}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 0;
	font-family: var(--titulo);
	font-size: var(--paragraph);
	color: var(--white);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.faq-item summary::-webkit-details-marker {display: none;}

.faq-item summary::after {
	content: "+";
	color: var(--red);
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
	transition: transform 0.3s ease-in-out;
}

.faq-item[open] summary::after {
	content: "\2212";
}

.faq-item .faq-answer {
	padding: 0 0 20px 0;
}

.faq-item .faq-answer p {
	color: var(--white);
	text-align: left;
}

/* PRIVACY POLICY */

.privacy-section {
	background: var(--white);
}

.privacy-updated {
	text-align: center;
	font-style: italic;
	margin-bottom: 30px !important;
	color: var(--dark);
	opacity: 0.7;
}

.privacy-content {
	max-width: 900px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.privacy-content h3 {
	font-family: var(--titulo);
	font-size: 1.3rem;
	margin: 25px 0 5px 0;
}

.privacy-content p {
	margin-bottom: 10px;
}

.privacy-link {
	color: var(--red);
	text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width:1366px) {
	.service-section {padding: 10px}
	.flex-row{flex-direction: column; width: inherit; padding: 5px;}
	.titulo3 {margin: 20px 0 0 0; text-align: left; border: 0px solid blue; width: 100%}
	.faq-item {padding: 5px 15px;}
	.section-title {font-size: var(--title);}
}
