/*Global*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #192436;
    --secondary: #253D5B;
    --gold: #c5b358;
    --dark: #0f0f1e;
    --border-color: #3a3a5a;
    --light: #F4F1EC;
    --gray: #8FA3B1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--secondary);
    color: var(--light);
    font-size: 1rem;
}

/* Header y Navegación */
header {
    background-color: var(--primary);
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
	box-shadow: none;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo span {
    display: block;
    font-size: 0.7rem;
    font-weight: normal;
    letter-spacing: 3px;
    margin-top: -5px;
}
.nav-links {
	
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
}
.nav-links a {
	color: var(--light);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
}
.nav-links a:hover {
	color: var(--gold);
}


.btn-solicitar {
	background-color: var(--gold);
	color: var(--dark);
	padding: 0.8rem 1.6rem;
	border-radius: 5px;
	font-weight: 600;
	
}


.btn-solicitar:hover {
	background-color: var(--dark);
	color: var(--dark);
	
}
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
	z-index: 1001;
	position: relative;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: var(--gold);
	transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.footer {
	background-color: var(--primary);
	padding: 3rem 5%;
	border-top: 2px solid var(--gold);
	margin-top: 4rem;
}
.footer-bottom {
  color: var(--light);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-privacy {
  color: var(--gold);
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.5rem;
	margin-bottom: 2rem;
}

.footer h4 {
	color: var(--gold);
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.footer-text {
	color: var(--light);
	line-height: 1.6;
	font-size: 0.85rem;
}

.footer-links ul,
.footer-contact ul {
	list-style: none;
	padding: 0;
}

.footer-links li,
.footer-contact li {
	margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a,
.footer-social a {
	color: var(--light);
	text-decoration: none;
	transition: color 0.3s;
	font-size: 0.85rem;
}

.footer-badges {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.footer-badge-img {
	height: 50px;
	width: auto;
	object-fit: contain;
	opacity: 0.9;
	transition: opacity 0.2s;
}

.footer-badge-img:hover {
	opacity: 1;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
	color: var(--gold);
}

.footer-contact ul {
	line-height: 1.8;
}
@media (max-width: 900px) {
	.nav-links {
		gap: 1rem;
	}

	.nav-links a {
		font-size: 0.75rem;
	}

	.btn-solicitar {
		padding: 0.6rem 1rem;
		font-size: 0.75rem;
	}
}
@media (max-width: 768px) {
	.hamburger {
		display: flex !important;
	}

	.nav-links {
		position: fixed !important;
		right: -100% !important;
		top: 115px !important;
		flex-direction: column !important;
		background-color: var(--primary);
		width: 100%;
		text-align: center;
		transition: right 0.3s;
		padding: 2rem 0;
		gap: 1.5rem;
		z-index: 999 !important;
		display: flex !important;
	}

	.nav-links.active {
		right: 0 !important;
	}

	.nav-links a {
		font-size: 1rem;
	}

	.btn-solicitar {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	.footer-privacy {
		display: block;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 2rem 3%;
	}

	.footer h4 {
		font-size: 1rem;
	}

	.footer-text,
	.footer-links a,
	.footer-contact a {
		font-size: 0.8rem;
	}
}
