@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Colores y fuentes base */
:root {
	--primary-color-start: #1a2a6c;
	--primary-color-end: #b21f1f;
	--secondary-color-start: #ff7e5f;
	--secondary-color-end: #feb47b;
	--text-light: #fff;
	--text-dark: #333;
	--bg-gradient: linear-gradient(135deg, #1a2a6c, #b21f1f);
	--text-gradient: linear-gradient(45deg, #ff7e5f, #feb47b);
}

/* Estilos de fuente globales */

/* Reset y estilos base */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
	font-family: 'Poppins', sans-serif;
	color: var(--text-light);
	background: var(--bg-gradient);
	line-height: 1.6;
	scroll-behavior: smooth;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 25px;
}

.main {
	padding-top: 80px;
	min-height: calc(100vh - 100px);
}

.section {
	padding: 60px 0;
}

/* Encabezado y navegación */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	z-index: 1000;
}

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 25px;
}

.header__logo.logo {
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	background: var(--text-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
}

.header__nav.nav {
	display: block;
	transition: transform 0.3s ease-in-out;
}

.nav__list {
	display: flex;
	list-style: none;
}

.nav__item {
	margin-left: 25px;
}

.nav__link {
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	color: var(--text-light);
	transition: all 0.3s;
	position: relative;
}

.nav__link:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--text-gradient);
	transition: width 0.3s ease-in-out;
}

.nav__link:hover:after,
.nav__link--active:after {
	width: 100%;
}

.header__burger.burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 20px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.burger__line {
	width: 100%;
	height: 2px;
	background: var(--text-light);
	transition: all 0.3s ease-in-out;
}

.burger--active .burger__line:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.burger--active .burger__line:nth-child(2) {
	opacity: 0;
}

.burger--active .burger__line:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
	.header__nav.nav {
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.8);
		transform: translateX(100%);
	}

	.header__nav.nav--active {
		transform: translateX(0);
	}

	.nav__list {
		flex-direction: column;
		align-items: center;
		padding-top: 40px;
	}

	.nav__item {
		margin: 15px 0;
	}

	.header__burger.burger {
		display: flex;
	}
}

/* Secciones de contenido */
.hero__title,
.content-section__title,
.faq-section__title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 30px;
	background: var(--text-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

.hero__subtitle,
.content-section__subtitle {
	font-size: 24px;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 15px;
	color: var(--secondary-color-end);
}

.hero__text,
.content-section__text {
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.8);
}

.list {
	list-style: none;
	padding-left: 0;
}

.list__item {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.list__item::before {
	content: '●';
	color: var(--secondary-color-end);
	font-size: 18px;
	position: absolute;
	left: 0;
	top: -2px;
}

/* Tablas */
.table-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 8px;
	margin-top: 30px;
	background: rgba(255, 255, 255, 0.05);
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 700px;
}

.data-table__head {
	background: rgba(255, 255, 255, 0.1);
}

.data-table__row {
	transition: background-color 0.3s;
}

.data-table__row:nth-child(even) {
	background: rgba(255, 255, 255, 0.03);
}

.data-table__row:hover {
	background: rgba(255, 255, 255, 0.1);
}

.data-table__heading {
	padding: 18px 15px;
	text-align: left;
	font-weight: 600;
	color: var(--text-light);
}

.data-table__cell {
	padding: 18px 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
}

/* Acordeón */
.accordion__item {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	margin-bottom: 15px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
}

.accordion__button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-light);
	text-align: left;
	font-size: 18px;
	font-weight: 600;
	padding: 20px;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
}

.accordion__button:hover {
	background: rgba(255, 255, 255, 0.1);
}

.accordion__content {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
	background: rgba(0, 0, 0, 0.2);
}

.accordion__button--active + .accordion__content {
	max-height: 500px;
	padding: 20px;
}

.accordion__button::after {
	content: '▼';
	font-size: 16px;
	font-weight: bold;
	color: var(--text-light);
	transition: transform 0.3s ease-in-out;
}

.accordion__button--active::after {
	transform: rotate(180deg);
}

/* Pie de página */
.footer {
	background: rgba(0, 0, 0, 0.2);
	padding: 20px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 60px;
}

.footer__text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

img {
	width: 100%;
}

.flex {
	display: flex;
	align-items: center;
	gap: 20px;
}

.form-box.dashed {
	max-width: 380px;
	margin: 30px auto;
	padding: 24px;
	background: #fff;
	border: 2px dashed #ccc;
	border-radius: 12px;
	text-align: center;
}
.form-box.dashed h2 {
	margin-bottom: 16px;
	color: #333;
}
.form-box.dashed input,
.form-box.dashed button {
	width: 100%;
	margin-bottom: 10px;
	padding: 12px;
	border-radius: 6px;
	border: 1px solid #bbb;
}
.form-box.dashed button {
	background: #ff5722;
	color: #fff;
	border: none;
	cursor: pointer;
}
.form-box.dashed button:hover {
	background: #e64a19;
}
@media (max-width: 992px) {
	.flex {
		flex-direction: column;
	}
}
