:root {
	--dc-color-white: #ffffff;
	--dc-color-light-gray: #f4f6fa;
	--dc-color-accent-red: #e63946;
	--dc-color-accent-blue: #1d3557;
	--dc-color-link-blue: #457b9d;
	--dc-color-text-dark: #222222;
	--dc-font-primary: 'Roboto', Arial, sans-serif;
	--dc-font-headings: 'Montserrat', Arial, sans-serif;
	--dc-transition: all 0.3s ease;
	--dc-border-radius: 8px;
	--dc-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	--dc-shadow-hover: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Reset y estilos base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	font-size: 16px;
}

body {
	font-family: var(--dc-font-primary);
	line-height: 1.6;
	color: var(--dc-color-text-dark);
	background-color: var(--dc-color-white);
	overflow-x: hidden;
}

/* Tipografía */
.dc-heading-1 {
	font-family: var(--dc-font-headings);
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--dc-color-accent-blue);
	margin-bottom: 1.5rem;
}

.dc-heading-2 {
	font-family: var(--dc-font-headings);
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--dc-color-accent-blue);
	margin-bottom: 1.25rem;
}

.dc-heading-3 {
	font-family: var(--dc-font-headings);
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--dc-color-accent-blue);
	margin-bottom: 1rem;
}

.dc-heading-4 {
	font-family: var(--dc-font-headings);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--dc-color-accent-blue);
	margin-bottom: 0.75rem;
}

.dc-text-large {
	font-size: 1.25rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.dc-text-medium {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 0.875rem;
}

.dc-text-small {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 0.75rem;
}

/* Layout principal */
.dc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.dc-container-full {
	width: 100%;
	padding: 0 20px;
}

.dc-section {
	padding: 80px 0;
	position: relative;
}

.dc-section-light {
	background-color: var(--dc-color-white);
}

.dc-section-gray {
	background-color: var(--dc-color-light-gray);
}

/* Header */
.dc-header {
	background-color: var(--dc-color-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: var(--dc-transition);
	padding: 0;
}

.dc-header.dc-scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.dc-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.dc-logo {
	font-family: var(--dc-font-headings);
	font-size: 2rem;
	font-weight: 700;
	color: var(--dc-color-accent-red);
	text-decoration: none;
	transition: var(--dc-transition);
}

.dc-logo:hover {
	color: var(--dc-color-accent-blue);
	transform: scale(1.05);
}

.dc-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.dc-nav-link {
	font-family: var(--dc-font-headings);
	font-weight: 500;
	color: var(--dc-color-text-dark);
	text-decoration: none;
	position: relative;
	padding: 8px 0;
	transition: var(--dc-transition);
}

.dc-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(
		45deg,
		var(--dc-color-accent-red),
		var(--dc-color-link-blue)
	);
	transition: width 0.3s ease;
}

.dc-nav-link:hover,
.dc-nav-link.dc-active {
	color: var(--dc-color-accent-red);
}

.dc-nav-link:hover::after,
.dc-nav-link.dc-active::after {
	width: 100%;
}

/* Menú móvil */
.dc-mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--dc-color-accent-blue);
	cursor: pointer;
	transition: var(--dc-transition);
}

.dc-mobile-menu-btn:hover {
	color: var(--dc-color-accent-red);
	transform: scale(1.1);
}

.dc-mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: var(--dc-color-white);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	padding: 20px;
	flex-direction: column;
	gap: 15px;
}

.dc-mobile-nav.dc-show {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	animation: dc-slideDown 0.3s ease;
}

/* Hero Section */
.dc-hero {
	background: linear-gradient(
		135deg,
		var(--dc-color-white) 0%,
		var(--dc-color-light-gray) 100%
	);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.dc-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../assets/dc-hero.webp') top/cover;
	opacity: 0.3;
	background-attachment: fixed;
}

.dc-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(69, 123, 157, 0.1) 0%,
		transparent 70%
	);
	border-radius: 50%;
	animation: dc-float 8s ease-in-out infinite reverse;
}

.dc-hero-content {
	position: relative;
	z-index: 2;
}

.dc-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(30px);
	animation: dc-fadeInUp 1s ease 0.3s forwards;
}

.dc-hero-subtitle {
	font-size: 1.4rem;
	color: var(--dc-color-link-blue);
	margin-bottom: 2.5rem;
	opacity: 0;
	transform: translateY(30px);
	animation: dc-fadeInUp 1s ease 0.6s forwards;
}

.dc-hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(30px);
	animation: dc-fadeInUp 1s ease 0.9s forwards;
}

/* Botones */
.dc-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: var(--dc-border-radius);
	text-decoration: none;
	font-family: var(--dc-font-headings);
	font-weight: 600;
	font-size: 1.1rem;
	transition: var(--dc-transition);
	cursor: pointer;
	border: none;
	text-align: center;
	min-width: 160px;
	position: relative;
	overflow: hidden;
}

.dc-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
}

.dc-btn:hover::before {
	left: 100%;
}

.dc-btn-primary {
	background: linear-gradient(45deg, var(--dc-color-accent-red), #ff4757);
	color: var(--dc-color-white);
	box-shadow: var(--dc-shadow);
}

.dc-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--dc-shadow-hover);
	background: linear-gradient(45deg, #d63031, var(--dc-color-accent-red));
}

.dc-btn-secondary {
	background: linear-gradient(
		45deg,
		var(--dc-color-accent-blue),
		var(--dc-color-link-blue)
	);
	color: var(--dc-color-white);
	box-shadow: var(--dc-shadow);
}

.dc-btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: var(--dc-shadow-hover);
	background: linear-gradient(45deg, var(--dc-color-link-blue), #2980b9);
}

.dc-btn-outline {
	background: transparent;
	color: var(--dc-color-accent-red);
	border: 2px solid var(--dc-color-accent-red);
}

.dc-btn-outline:hover {
	background: var(--dc-color-accent-red);
	color: var(--dc-color-white);
	transform: translateY(-2px);
	box-shadow: var(--dc-shadow);
}

/* Cards y componentes */
.dc-card {
	background: var(--dc-color-white);
	border-radius: var(--dc-border-radius);
	box-shadow: var(--dc-shadow);
	padding: 30px;
	transition: var(--dc-transition);
	position: relative;
	overflow: hidden;
}

.dc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		45deg,
		var(--dc-color-accent-red),
		var(--dc-color-link-blue)
	);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.dc-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--dc-shadow-hover);
}

.dc-card:hover::before {
	transform: scaleX(1);
}

.dc-card-image {
	width: 100%;
	height: 200px;
	background: var(--dc-color-light-gray);
	border-radius: var(--dc-border-radius);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dc-color-link-blue);
	font-size: 3rem;
	position: relative;
	overflow: hidden;
}

.dc-card-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		45deg,
		rgba(230, 57, 70, 0.05) 0%,
		rgba(69, 123, 157, 0.05) 50%,
		rgba(29, 53, 87, 0.05) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dc-card:hover .dc-card-image::before {
	opacity: 1;
}

.dc-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--dc-border-radius);
}

.dc-card-title {
	color: var(--dc-color-accent-blue);
	margin-bottom: 15px;
	font-size: 1.4rem;
}

.dc-card-text {
	color: var(--dc-color-text-dark);
	line-height: 1.6;
	margin-bottom: 20px;
}

.dc-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	font-size: 0.9rem;
	color: var(--dc-color-link-blue);
	border-top: 1px solid #eee;
	padding-top: 15px;
	margin-top: auto;
}

/* Grid layouts */
.dc-grid {
	display: grid;
	gap: 30px;
}

.dc-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.dc-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.dc-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Secciones específicas */
.dc-section-title {
	text-align: center;
	margin-bottom: 60px;
}

.dc-section-subtitle {
	font-size: 1.2rem;
	color: var(--dc-color-link-blue);
	text-align: center;
	margin-bottom: 15px;
	font-weight: 500;
}

/* Timeline */
.dc-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.dc-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(
		to bottom,
		var(--dc-color-accent-red),
		var(--dc-color-link-blue)
	);
	transform: translateX(-50%);
}

.dc-timeline-item {
	margin-bottom: 40px;
	position: relative;
	width: 50%;
	padding: 20px;
}

.dc-timeline-item:nth-child(odd) {
	left: 0;
	padding-right: 40px;
}

.dc-timeline-item:nth-child(even) {
	left: 50%;
	padding-left: 40px;
}

.dc-timeline-item::before {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	background: var(--dc-color-accent-red);
	border: 3px solid var(--dc-color-white);
	border-radius: 50%;
	top: 44px;
	box-shadow: 0 0 0 3px var(--dc-color-accent-red);
}

.dc-timeline-item:nth-child(odd)::before {
	right: -11px;
}

.dc-timeline-item:nth-child(even)::before {
	left: -11px;
}

.dc-timeline-content {
	background: var(--dc-color-white);
	padding: 25px;
	border-radius: var(--dc-border-radius);
	box-shadow: var(--dc-shadow);
	position: relative;
}

.dc-timeline-content::before {
	content: '';
	position: absolute;
	top: 25px;
	width: 0;
	height: 0;
	border: 10px solid transparent;
}

.dc-timeline-item:nth-child(odd) .dc-timeline-content::before {
	right: -20px;
	border-left-color: var(--dc-color-white);
}

.dc-timeline-item:nth-child(even) .dc-timeline-content::before {
	left: -20px;
	border-right-color: var(--dc-color-white);
}

.dc-timeline-year {
	background: var(--dc-color-accent-red);
	color: var(--dc-color-white);
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 10px;
}

/* Team cards */
.dc-team-card {
	text-align: center;
	padding: 30px 20px;
}

.dc-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: var(--dc-color-light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: var(--dc-color-link-blue);
	position: relative;
	overflow: hidden;
	transition: var(--dc-transition);
}

.dc-team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dc-team-avatar::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		45deg,
		var(--dc-color-accent-red),
		var(--dc-color-link-blue)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dc-team-card:hover .dc-team-avatar {
	transform: scale(1.05);
}

.dc-team-card:hover .dc-team-avatar::before {
	opacity: 0.1;
}

.dc-team-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dc-color-accent-blue);
	margin-bottom: 8px;
}

.dc-team-role {
	color: var(--dc-color-accent-red);
	font-weight: 500;
	margin-bottom: 15px;
}

/* Formularios */
.dc-form {
	max-width: 600px;
	margin: 0 auto;
}

.dc-form-group {
	margin-bottom: 25px;
}

.dc-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--dc-color-accent-blue);
}

.dc-form-input,
.dc-form-textarea,
.dc-form-select {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e1e5e9;
	border-radius: var(--dc-border-radius);
	font-size: 1rem;
	transition: var(--dc-transition);
	background-color: var(--dc-color-white);
}

.dc-form-input:focus,
.dc-form-textarea:focus,
.dc-form-select:focus {
	outline: none;
	border-color: var(--dc-color-accent-red);
	box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.dc-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.dc-form-error {
	color: var(--dc-color-accent-red);
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.dc-form-group.dc-error .dc-form-input,
.dc-form-group.dc-error .dc-form-textarea {
	border-color: var(--dc-color-accent-red);
}

.dc-form-group.dc-error .dc-form-error {
	display: block;
}

/* Footer */
.dc-footer {
	background-color: var(--dc-color-light-gray);
	padding: 60px 0 20px;
}

.dc-footer-main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.dc-footer-brand h3 {
	color: var(--dc-color-accent-red);
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.dc-footer-brand p {
	color: var(--dc-color-link-blue);
	font-style: italic;
}

.dc-footer-links h4 {
	color: var(--dc-color-accent-blue);
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.dc-footer-links ul {
	list-style: none;
}

.dc-footer-links li {
	margin-bottom: 10px;
}

.dc-footer-links a {
	color: var(--dc-color-text-dark);
	text-decoration: none;
	transition: var(--dc-transition);
}

.dc-footer-links a:hover {
	color: var(--dc-color-accent-red);
	padding-left: 5px;
}

.dc-footer-contact h4 {
	color: var(--dc-color-accent-blue);
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.dc-footer-contact p {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dc-footer-contact i {
	color: var(--dc-color-accent-red);
	width: 20px;
}

.dc-footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #ddd;
	color: var(--dc-color-link-blue);
}

/* Cookie Banner */
.dc-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--dc-color-accent-blue);
	color: var(--dc-color-white);
	padding: 20px;
	z-index: 1000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.dc-cookie-banner.dc-show {
	transform: translateY(0);
}

.dc-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.dc-cookie-text {
	flex: 1;
	min-width: 300px;
}

.dc-cookie-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.dc-cookie-btn {
	padding: 8px 20px;
	border: none;
	border-radius: var(--dc-border-radius);
	cursor: pointer;
	font-weight: 500;
	transition: var(--dc-transition);
}

.dc-cookie-accept {
	background: var(--dc-color-accent-red);
	color: var(--dc-color-white);
}

.dc-cookie-accept:hover {
	background: #d63031;
}

.dc-cookie-policy {
	background: transparent;
	color: var(--dc-color-white);
	border: 1px solid var(--dc-color-white);
	text-decoration: none;
	display: inline-block;
	padding: 8px 20px;
	border-radius: var(--dc-border-radius);
}

.dc-cookie-policy:hover {
	background: var(--dc-color-white);
	color: var(--dc-color-accent-blue);
}

/* Animaciones */
@keyframes dc-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes dc-fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes dc-fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes dc-slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes dc-float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.dc-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.dc-animate-on-scroll.dc-visible {
	opacity: 1;
	transform: translateY(0);
}

.dc-animate-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.6s ease;
}

.dc-animate-left.dc-visible {
	opacity: 1;
	transform: translateX(0);
}

.dc-animate-right {
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.6s ease;
}

.dc-animate-right.dc-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Utilidades */
.dc-text-center {
	text-align: center;
}
.dc-text-left {
	text-align: left;
}
.dc-text-right {
	text-align: right;
}

.dc-mb-0 {
	margin-bottom: 0;
}
.dc-mb-1 {
	margin-bottom: 0.5rem;
}
.dc-mb-2 {
	margin-bottom: 1rem;
}
.dc-mb-3 {
	margin-bottom: 1.5rem;
}
.dc-mb-4 {
	margin-bottom: 2rem;
}
.dc-mb-5 {
	margin-bottom: 3rem;
}

.dc-mt-0 {
	margin-top: 0;
}
.dc-mt-1 {
	margin-top: 0.5rem;
}
.dc-mt-2 {
	margin-top: 1rem;
}
.dc-mt-3 {
	margin-top: 1.5rem;
}
.dc-mt-4 {
	margin-top: 2rem;
}
.dc-mt-5 {
	margin-top: 3rem;
}

.dc-hidden {
	display: none;
}
.dc-visible {
	display: block;
}

.dc-color-red {
	color: var(--dc-color-accent-red);
}
.dc-color-blue {
	color: var(--dc-color-accent-blue);
}
.dc-color-link {
	color: var(--dc-color-link-blue);
}

/* Tabs */
.dc-tabs {
	width: 100%;
}

.dc-tab-nav {
	display: flex;
	border-bottom: 2px solid var(--dc-color-light-gray);
	margin-bottom: 30px;
	overflow-x: auto;
}

.dc-tab-btn {
	background: none;
	border: none;
	padding: 15px 25px;
	font-family: var(--dc-font-headings);
	font-weight: 500;
	color: var(--dc-color-link-blue);
	cursor: pointer;
	transition: var(--dc-transition);
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}

.dc-tab-btn:hover,
.dc-tab-btn.dc-active {
	color: var(--dc-color-accent-red);
	border-bottom-color: var(--dc-color-accent-red);
}

.dc-tab-content {
	display: none;
}

.dc-tab-content.dc-active {
	display: block;
	animation: dc-fadeInUp 0.5s ease;
}

/* Filtros */
.dc-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
}

.dc-filter-btn {
	background: transparent;
	border: 2px solid var(--dc-color-light-gray);
	padding: 8px 20px;
	border-radius: 25px;
	font-weight: 500;
	color: var(--dc-color-link-blue);
	cursor: pointer;
	transition: var(--dc-transition);
}

.dc-filter-btn:hover,
.dc-filter-btn.dc-active {
	background: var(--dc-color-accent-red);
	border-color: var(--dc-color-accent-red);
	color: var(--dc-color-white);
}

/* Mapa */
.dc-map-container {
	width: 100%;
	height: 100%;
	border-radius: var(--dc-border-radius);
	overflow: hidden;
	box-shadow: var(--dc-shadow);
}

.dc-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.dc-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.dc-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.dc-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Estados de carga y mensajes */
.dc-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid var(--dc-color-light-gray);
	border-top: 2px solid var(--dc-color-accent-red);
	border-radius: 50%;
	animation: dc-spin 1s linear infinite;
}

@keyframes dc-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.dc-message {
	padding: 15px 20px;
	border-radius: var(--dc-border-radius);
	margin: 20px 0;
}

.dc-message-success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.dc-message-error {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.dc-message-info {
	background-color: #d1ecf1;
	border: 1px solid #bee5eb;
	color: #0c5460;
}

/* Mejoras adicionales */
.dc-hover-lift {
	transition: var(--dc-transition);
}

.dc-hover-lift:hover {
	transform: translateY(-3px);
}

.dc-gradient-text {
	background: linear-gradient(
		45deg,
		var(--dc-color-accent-red),
		var(--dc-color-link-blue)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.dc-blur-bg {
	backdrop-filter: blur(10px);
	background-color: rgba(255, 255, 255, 0.9);
}

/* Mejoras de accesibilidad */
.dc-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.dc-news-item {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.dc-table {
	width: 100%;
	border-collapse: collapse;
	background: #f4f6fa;
	border-radius: 12px;
	overflow: hidden;
	font-family: 'Segoe UI', Roboto, sans-serif;
	color: #222222;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dc-table thead {
	background: #1d3557;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.dc-table th,
.dc-table td {
	padding: 14px 18px;
	text-align: center;
}

.dc-table tbody tr:nth-child(even) {
	background: #ffffff;
}

.dc-table tbody tr:nth-child(odd) {
	background: #f4f6fa;
}

.dc-table tbody tr:hover {
	background: #e63946;
	color: #ffffff;
	transition: all 0.3s ease;
}

.dc-table th:first-child,
.dc-table td:first-child {
	text-align: left;
	font-weight: 600;
	color: #1d3557;
}

.dc-table td {
	border-bottom: 1px solid #e0e4ec;
}

.dc-table tbody tr:last-child td {
	border-bottom: none;
}

/* Responsive Design */
@media (max-width: 900px) {
	.dc-nav {
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.dc-header-inner {
		padding: 12px 20px;
	}

	.dc-nav {
		display: none;
	}

	.dc-mobile-menu-btn {
		display: block;
	}

	.dc-hero h1,
	.dc-heading-1 {
		font-size: 2.5rem;
	}

	.dc-heading-2 {
		font-size: 2rem;
	}

	.dc-heading-3 {
		font-size: 1.6rem;
	}

	.dc-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.dc-btn {
		width: 100%;
		max-width: 280px;
	}

	.dc-grid-2,
	.dc-grid-3,
	.dc-grid-4 {
		grid-template-columns: 1fr;
	}

	.dc-timeline::before {
		left: 20px;
	}

	.dc-timeline-item {
		width: 100%;
		left: 0;
		padding-left: 60px !important;
		padding-right: 20px;
	}

	.dc-timeline-item::before {
		left: 9px !important;
	}

	.dc-form {
		max-width: none;
		margin: auto;
	}

	.dc-timeline-content::before {
		left: -20px;
		border-right-color: var(--dc-color-white);
		border-left-color: transparent;
	}

	.dc-timeline-item:nth-child(even) {
		left: 0;
	}

	.dc-timeline-item:nth-child(odd),
	.dc-timeline-item:nth-child(even) {
		padding-right: 0;
	}

	.dc-footer-main {
		grid-template-columns: 1fr;
	}

	.dc-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.dc-section {
		padding: 60px 0;
	}

	.dc-container,
	.dc-container-full {
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.dc-hero h1,
	.dc-heading-1 {
		font-size: 2rem;
	}

	.dc-tab-nav {
		flex-direction: column;
	}

	.dc-hero-subtitle {
		font-size: 1.1rem;
	}

	.dc-card {
		padding: 20px;
	}

	.dc-team-avatar {
		width: 100px;
		height: 100px;
		font-size: 2.5rem;
	}

	.dc-section-title {
		margin-bottom: 40px;
	}
}

.dc-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px;
	background-color: #ffffff;
}

/* Header Styles */
.dc-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding: 30px 0;
	background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
	border-radius: 12px;
	color: #ffffff;
}

.dc-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: -0.5px;
}

.dc-legal-subtitle {
	font-size: 1.2rem;
	font-weight: 300;
	opacity: 0.9;
}

/* Company Info */
.dc-legal-company {
	background-color: #f4f6fa;
	padding: 25px;
	border-radius: 10px;
	margin-bottom: 40px;
	border-left: 4px solid #e63946;
}

.dc-legal-company h2 {
	color: #1d3557;
	font-size: 1.5rem;
	margin-bottom: 15px;
	font-weight: 600;
}

.dc-legal-company p {
	margin-bottom: 8px;
	color: #222222;
}

.dc-legal-company strong {
	color: #1d3557;
	font-weight: 600;
}

/* Content Sections */
.dc-legal-content {
	margin-bottom: 40px;
}

.dc-legal-section {
	background-color: #f4f6fa;
	margin-bottom: 30px;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid rgba(69, 123, 157, 0.1);
	transition: box-shadow 0.3s ease;
}

.dc-legal-section:hover {
	box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
}

.dc-legal-section h2 {
	color: #1d3557;
	font-size: 1.8rem;
	margin-bottom: 20px;
	font-weight: 600;
	padding-bottom: 10px;
	border-bottom: 2px solid #e63946;
}

.dc-legal-section h3 {
	color: #457b9d;
	font-size: 1.3rem;
	margin-bottom: 15px;
	margin-top: 25px;
	font-weight: 500;
}

.dc-legal-section p {
	margin-bottom: 15px;
	line-height: 1.7;
	text-align: justify;
}

.dc-legal-section ul {
	margin: 20px 0;
	padding-left: 25px;
}

.dc-legal-section li {
	margin-bottom: 10px;
	line-height: 1.6;
	color: #222222;
}

/* Links */
.dc-legal-link {
	color: #457b9d;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.dc-legal-link:hover {
	color: #e63946;
	text-decoration: underline;
}

/* Contact Info Highlight */
.dc-legal-contact {
	background: linear-gradient(135deg, #e63946 0%, #e63946 100%);
	color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	text-align: center;
}

.dc-legal-contact strong {
	font-size: 1.1rem;
}

/* Footer */
.dc-legal-footer {
	margin-top: 50px;
	padding: 30px;
	background-color: #1d3557;
	color: #ffffff;
	text-align: center;
	border-radius: 10px;
}

.dc-legal-footer p {
	margin-bottom: 10px;
}

.dc-legal-footer a {
	color: #457b9d;
	text-decoration: none;
}

.dc-legal-footer a:hover {
	color: #e63946;
}

/* 404 Page Specific Styles */
.dc-legal-404-container {
	text-align: center;
	padding: 80px 20px;
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.dc-legal-404-number {
	font-size: 8rem;
	font-weight: 900;
	color: #e63946;
	line-height: 0.8;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.dc-legal-404-title {
	font-size: 2.5rem;
	color: #1d3557;
	margin-bottom: 20px;
	font-weight: 600;
}

.dc-legal-404-description {
	font-size: 1.2rem;
	color: #222222;
	margin-bottom: 40px;
	max-width: 600px;
	line-height: 1.6;
}

.dc-legal-404-button {
	background: linear-gradient(135deg, #e63946 0%, #1d3557 100%);
	color: #ffffff;
	padding: 15px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.dc-legal-404-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
	.dc-legal-title {
		font-size: 2rem;
	}

	.dc-legal-subtitle {
		font-size: 1rem;
	}

	.dc-legal-section {
		padding: 20px;
	}

	.dc-legal-section h2 {
		font-size: 1.5rem;
	}

	.dc-legal-404-number {
		font-size: 5rem;
	}

	.dc-legal-404-title {
		font-size: 1.8rem;
	}

	.dc-legal-404-description {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.dc-legal-title {
		font-size: 1.3rem;
	}

	.dc-legal-section h2 {
		font-size: 1.3rem;
	}

	.dc-legal-404-number {
		font-size: 4rem;
	}

	.dc-legal-404-title {
		font-size: 1.5rem;
	}
}
