/* RESET & BASE */
html {
	scroll-behavior: smooth;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Syne", sans-serif;
	color: #333;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.container.wide {
	max-width: 1400px;
}
.text-center {
	text-align: center;
}
.txt-regular {
	font-weight: 400;
}
.txt-bold {
	font-weight: 700;
}
.txt-extrabold {
	font-weight: 800;
}
h2.dark-green-title {
	color: var(--dark-green);
}
/* COLORES */
:root {
	--green: #bad377;
	--vivid-green: #a4c639;
	--dark-green: #56652f;
	--dark-grey: #606060;
	--pink: #9e598b;
}

/* TOP BAR GRIS */
.top-bar {
	background-color: #f1f1f1; /* Gris clarito del diseño */
	padding: 10px 0;
}
.top-links {
	list-style: none;
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	margin: 0;
}
.top-links a {
	text-decoration: none;
	color: #666;
	font-size: 0.8rem;
	font-weight: 700;
}

/* BOTÓN VERDE LLENO (Sección Ley) */
.btn-green-fill {
	display: inline-block;
	background: var(--pink);
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	margin-top: 20px;
	text-transform: uppercase;
	font-size: 0.85rem;
	transition: all 0.3s ease;
}
.btn-green-fill:hover {
	background: darken(219, 96, 139, 10%);
	transform: translateY(-2px);
}

/* FOOTER */
.main-footer {
	background: #333;
	color: #999;
	padding: 30px 0;
	font-size: 0.8rem;
}
.footer-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo-footer {
	filter: brightness(0) invert(1); /* Pone el logo en blanco */
	height: 30px;
}

/* HERO */
.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("assets/img/hero-bg.jpg");
	background-size: cover;
	background-position: center;
	height: 90vh;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}
.nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
}
.nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
}
.hero-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
	max-width: 500px;
}
.hero-logo {
	width: 390px;
	height: auto;
}
.hero-title {
	font-size: 2.5rem;
	line-height: 1.1;
	color: var(--green);
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-right {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.btn-cta {
	background: var(--pink);
	color: white;
	padding: 15px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	text-transform: uppercase;
}
.btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(158, 89, 139, 0.3);
}
.btn-cta-hero {
	display: inline-block;
	background: var(--pink);
	color: white;
	padding: 20px 50px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 400;
	font-size: 1.6rem;
	transition: all 0.3s ease;
}
.btn-cta-hero:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(158, 89, 139, 0.3);
}

/* SECCIONES */
.section-green-intro {
	background: var(--green);
	color: var(--dark-grey);
	padding: 60px 0;
}
.section-green-intro h2 {
	font-size: 1.8rem;
	line-height: 1.3;
	margin-bottom: 20px;
	font-weight: 800;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.section-green-intro p {
	font-size: 1.3rem;
	opacity: 0.95;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	padding: 80px 0;
}
.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 40px 0;
}
.grid-5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	padding: 40px 0;
}

/* FEATURES */
.feature-item {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 20px;
}
.feature-item img {
	width: 45px;
	flex-shrink: 0;
}
.feature-item p {
	font-size: 1.3rem;
	color: var(--dark-grey);
	line-height: 1.1;
}

/* STEPS */
.step {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}
.step img {
	width: 40px;
}

/* FORM */
/* FORMULARIO */
.section-form {
	padding: 80px 0;
}
.section-form .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.form-title {
	position: relative;
	display: inline-block;
	color: var(--dark-green);
	font-size: 2.2rem;
	margin-bottom: 60px;
}
.form-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 3px;
	background: var(--green);
}
.contact-form {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}
.form-row {
	display: grid;
	gap: 40px;
	margin-bottom: 40px;
}
.form-row-3 {
	grid-template-columns: 1fr 1fr 1fr;
}
.form-row-2 {
	grid-template-columns: 1fr 1fr;
}
.form-row-full {
	grid-template-columns: 1fr;
}
input,
select,
textarea {
	width: 100%;
	padding: 12px 0;
	border: none;
	border-bottom: 2px solid #d0d0d0;
	background: transparent;
	font-family: "Syne";
	font-size: 1rem;
	color: #888;
	transition: border-color 0.3s ease;
	outline: none;
}
input:focus,
select:focus,
textarea:focus {
	border-bottom-color: var(--green);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
	color: #aaa;
	font-weight: 400;
}
select {
	color: #888;
	cursor: pointer;
}
select option {
	color: #333;
	background: white;
}
.form-checkbox {
	margin: 30px 0 20px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.form-checkbox input[type="checkbox"] {
	width: auto;
	margin-top: 4px;
	cursor: pointer;
	min-width: 18px;
	min-height: 18px;
	accent-color: var(--green);
}
.form-checkbox label {
	font-size: 0.9rem;
	color: var(--dark-grey);
	line-height: 1.5;
	cursor: pointer;
}
.form-checkbox label a {
	color: var(--green);
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.3s ease;
}
.form-checkbox label a:hover {
	color: var(--dark-green);
}
.btn-submit-green {
	display: block;
	margin: 50px auto 20px;
	background: var(--green);
	border: none;
	color: white;
	padding: 18px 60px;
	border-radius: 50px;
	font-family: "Syne";
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}
.btn-submit-green:hover {
	background: var(--dark-green);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(90, 124, 62, 0.3);
}
.btn-submit-green:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
}
.form-disclaimer {
	margin-top: 20px;
	font-size: 1rem;
	color: var(--green);
	font-weight: 400;
	line-height: 1.6;
}
.form-message {
	max-width: 1000px;
	margin: 20px auto;
	padding: 15px 20px;
	border-radius: 8px;
	text-align: center;
	font-weight: 600;
	display: none;
}
.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}
.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* ISLANDS */
.section-islands {
	background-color: #f5f5f5;
	padding: 80px 0 30px;
}
.section-islands h2 {
	color: var(--dark-green);
	font-weight: 800;
}
.island-card {
	text-align: center;
	line-height: 1.3;
}
.island-card h4 {
	font-size: 1.4rem;
	margin-bottom: 8px;
}
.island-card img {
	height: 80px;
	margin-bottom: 10px;
}
.section-testimonial {
	background-color: #f5f5f5;
	padding: 80px 0;
}
.section-testimonial .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}
.section-testimonial img {
	width: 100%;
	max-width: 400px;
	height: auto;
}
.testimonial-info {
	padding: 10px;
}
.testimonial-info .autor {
	font-size: 1.3rem;
	color: var(--dark-grey);
	font-weight: 800;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.testimonial-info p {
	font-size: 1.2rem;
	line-height: 1.4;
	color: var(--dark-grey);
	font-style: italic;
}
.testimonial-info .quotes {
	font-size: 2.5rem;
	color: var(--green);
	font-weight: 800;
	vertical-align: bottom;
	line-height: 1.1;
}
.testimonial-info .quotes.close {
	vertical-align: top;
	line-height: 2.1;
}
.aclaracion_testimonio {
	text-align: center;
	font-size: 0.9rem;
	color: #999;
	margin-top: 40px;
	font-style: italic;
}

/* BANNER OSCURO */
.banner-dark {
	background: #505050;
	color: white;
	padding: 60px 0;
	text-align: center;
}
.banner-dark p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	font-weight: 700;
}
.btn-pink {
	display: inline-block;
	background: var(--pink);
	border: none;
	color: white;
	padding: 15px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1rem;
	transition: all 0.3s ease;
}
.btn-pink:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(158, 89, 139, 0.3);
}

/* SECCIÓN EXPLICACIÓN LEY */
.section-explanation {
	padding: 80px 0;
	text-align: right;
}
.section-explanation h2 {
	font-size: 1.6rem;
	margin-bottom: 30px;
	color: var(--dark-green);
	line-height: 1.2;
	font-weight: 800;
}
.section-explanation p {
	font-size: 1rem;
	margin-bottom: 20px;
	color: var(--dark-grey);
}

/* INFO LEY */
#info-ley {
	padding: 60px 0;
	margin-top: 40px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#info-ley h2 {
	position: relative;
	font-size: 1.6rem;
	color: var(--dark-green);
	text-align: center;
	margin-bottom: 20px;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.2;
	max-width: 900px;
}
#info-ley h2::after {
	content: "";
	display: block;
	width: 80px;
	height: 3px;
	background: var(--green);
	margin: 20px auto 40px;
}
.info-ley-content {
	display: flex;
	flex-direction: row;
	gap: 40px;
	padding: 0 20px;
	align-items: center;
}
.info-ley {
	font-size: 1.3rem;
	line-height: 1.6;
	color: var(--dark-grey);
	flex: 605;
}
.info-ley ul {
	list-style: disc;
	margin-left: 20px;
	text-align: left;
}
.info-ley li {
	margin-bottom: 15px;
}
.info-deudas {
	background: #e8e8e8;
	padding: 15px;
	font-size: 1.3rem;
	line-height: 1.6;
	color: var(--dark-grey);
	text-align: left;
}

.info-deudas ul {
	list-style: disc;
	margin-left: 20px;
	text-align: left;
}
.info-deudas li {
	font-size: 1.2rem;
}
.info-deudas p {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 12px;
}

/* SECCIÓN PROCESO */
.section-process {
	padding: 80px 0;
}
.section-process h3 {
	font-size: 1.8rem;
	margin-bottom: 40px;
	color: var(--dark-grey);
}
.process-steps {
	max-width: 600px;
	margin: 0 auto;
}
.process-steps .txt-bold {
	color: var(--dark-green);
}
.process-steps .steps-container {
	padding-left: 30px;
	background-image: url("assets/img/down_line_arrow.png");
	background-position: 0 calc(100% - 10px);
	background-repeat: no-repeat;
	background-size: auto;
	text-align: left;
}

/* LIGHT GREEN BG */
.light-green-bg {
	background-color: rgba(186, 211, 119, 0.5);
	padding: 60px 0;
}
.light-green-bg h2 {
	font-size: 2rem;
	color: var(--dark-green);
	line-height: 1.3;
	font-weight: 800;
}
.viabilidad-casos .header-small {
	font-size: 0.8em;
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
}

/* SECCIÓN ¿POR QUÉ REINICIA? */
.section-why {
	background: white;
	padding: 80px 0 30px;
}
.section-why h2 {
	font-size: 1.6rem;
	margin-bottom: 20px;
	color: var(--dark-green);
	text-align: center;
	font-weight: 800;
}
.section-why h2::after {
	content: "";
	display: block;
	width: 80px;
	height: 3px;
	background: var(--green);
	margin: 10px auto 0px;
}
.why-card {
	background: var(--dark-green);
	color: white;
	padding: 18px;
	border-top: 16px solid var(--green);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.why-card h4 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.3;
}
.why-card p {
	font-size: 0.85rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
}
.closing_claim {
	padding: 40px 0;
}
.closing_claim p {
	font-size: 1.2rem;
	color: var(--dark-green);
	font-weight: 700;
	line-height: 1.4;
}

/* PÁGINAS LEGALES */
.hero-legal {
	background: var(--green);
	padding: 40px 0;
	text-align: center;
}
.hero-legal .container {
	max-width: 1200px;
	margin: 0 auto;
}
.hero-logo-legal {
	max-width: 150px;
	margin-bottom: 20px;
	filter: brightness(0) invert(1);
}
.hero-legal h1 {
	color: white;
	font-size: 2.5rem;
	margin: 0;
}
.legal-content {
	padding: 60px 0;
	background: #fff;
}
.container-legal {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}
.entry-content,
.fullwidth_content {
	font-family: "Syne", sans-serif;
	color: var(--dark-grey);
	line-height: 1.8;
}
.entry-content p,
.fullwidth_content p {
	margin-bottom: 20px;
	font-size: 1rem;
}
.entry-content h3,
.fullwidth_content h3 {
	color: var(--dark-green);
	font-size: 1.5rem;
	font-weight: 800;
	margin: 40px 0 20px;
	text-transform: uppercase;
}
.entry-content h4,
.fullwidth_content h4 {
	color: var(--dark-green);
	font-size: 1.3rem;
	font-weight: 800;
	margin: 30px 0 15px;
}
.entry-content ul,
.entry-content ol,
.fullwidth_content ul,
.fullwidth_content ol {
	margin-bottom: 20px;
	padding-left: 30px;
}
.entry-content li,
.fullwidth_content li {
	margin-bottom: 12px;
	font-size: 0.95rem;
	line-height: 1.7;
}
.entry-content ul li,
.fullwidth_content ul li {
	list-style: disc;
}
.entry-content ol li,
.fullwidth_content ol li {
	list-style: decimal;
}
.entry-content ul ul,
.fullwidth_content ul ul {
	margin-top: 10px;
	margin-bottom: 10px;
}
.entry-content a,
.fullwidth_content a {
	color: var(--green);
	text-decoration: underline;
	transition: color 0.3s ease;
}
.entry-content a:hover,
.fullwidth_content a:hover {
	color: var(--dark-green);
}
.entry-content strong,
.fullwidth_content strong {
	font-weight: 700;
	color: var(--dark-grey);
}
.footer-links {
	margin-top: 10px;
	font-size: 0.85rem;
}
.footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-links a:hover {
	color: var(--green);
}

@media (max-width: 1200px) {
	.grid-5 {
		grid-template-columns: repeat(3, 1fr);
	}
	.hero-content {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.hero-right {
		justify-content: flex-start;
	}
	.section-features .img-main img {
		max-width: 350px;
	}
}
@media (max-width: 768px) {
	.grid-5 {
		grid-template-columns: repeat(2, 1fr);
	}
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.top-bar .top-links li:first-child {
		display: none;
	}
	.hero-content {
		gap: 30px;
	}
	.hero-title {
		font-size: 2.2rem;
	}
	.hero-logo {
		height: 60px;
	}
	.section-features .grid-2 {
		grid-template-columns: 1fr;
	}
	.section-features .img-main {
		order: 2;
		text-align: center;
	}
	.section-features .features-list {
		order: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.section-features .img-main img {
		max-width: 100%;
	}
	.feature-item {
		justify-content: center;
		max-width: 360px;
	}
	.section-explanation {
		padding: 0 14px !important;
	}
	.section-explanation .grid-2 {
		grid-template-columns: 1fr;
	}
	.section-explanation .img-main {
		order: 2;
		text-align: center;
	}
	.section-explanation .text-explanation {
		order: 1;
		text-align: center;
	}
	.section-explanation .img-main img {
		max-width: 100%;
	}
	.info-ley-content {
		flex-direction: column;
		gap: 30px;
	}
	.section-process .grid-2 {
		grid-template-columns: 1fr;
	}
	.section-process .img-side {
		order: 1;
		text-align: center;
	}
	.section-process .process-steps {
		order: 2;
		text-align: center;
	}
	.section-process .img-side img {
		max-width: 100%;
	}
	.section-testimonial .container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.section-testimonial img {
		order: 1;
	}
	.testimonial-info {
		order: 2;
		text-align: center;
	}
	.form-row-3,
	.form-row-2 {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.form-title {
		font-size: 1.8rem;
	}
}
@media (max-width: 500px) {
	.grid-5 {
		grid-template-columns: 1fr;
	}
	.grid-4 {
		grid-template-columns: 1fr;
	}
	.form-title {
		font-size: 1.5rem;
	}
	.btn-submit-green {
		padding: 15px 40px;
		font-size: 0.9rem;
	}
	.form-checkbox label {
		font-size: 0.85rem;
	}
	.hero-legal h1 {
		font-size: 1.8rem;
	}
	.hero-logo-legal {
		max-width: 120px;
	}
}
