/*
Theme Name: Situ
Description: Tema personalizado Situ
Version: 1.0.0
Author: j{AI}son
*/

/* Variables CSS */
:root {
	font-size: clamp(4px, 1.05vw, 20px);
	--color-primary: #0066FF;
	--color-secondary: #00D4AA;
	--color-text: #1a1a1a;
	--color-text-light: #666;
	--color-bg: #ffffff;
	--color-bg-light: #f5f5f5;
	--container-width: 1200px;
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 4rem;
	--spacing-xl: 6rem;
}

/* Reset básico */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	max-width: 1920px;
	margin: 0 auto;
	background: var(--color-bg);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: var(--color-text);
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

a:hover {
	opacity: 0.7;
}

/* Container */
.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

/* Header */
.site-header {
	background: var(--color-bg);
	border-bottom: 1px solid #e0e0e0;
	padding: var(--spacing-md) 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-logo a {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--color-text);
}

.main-nav ul {
	display: flex;
	list-style: none;
	gap: var(--spacing-md);
}

.main-nav a {
	color: var(--color-text);
	font-weight: 500;
}

/* Hero Section */
.hero-section {
	background: var(--color-bg-light);
	padding: var(--spacing-xl) 0;
	text-align: center;
}

.hero-section h1 {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: bold;
	margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--color-text-light);
	margin-bottom: var(--spacing-sm);
}

.hero-dates {
	font-size: 1rem;
	color: var(--color-text-light);
	margin-bottom: var(--spacing-md);
}

.btn-primary {
	display: inline-block;
	background: var(--color-primary);
	color: white;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	opacity: 1;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Manifiesto Section */
.manifiesto-section {
	padding: var(--spacing-xl) 0;
}

.manifiesto-section h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: var(--spacing-md);
}

.manifiesto-content {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

/* Visual Section */
.visual-section {
	padding: var(--spacing-lg) 0;
	background: var(--color-bg-light);
}

.visual-section img {
	width: 100%;
	border-radius: 12px;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 12px;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Accesos Rápidos */
.accesos-rapidos {
	padding: var(--spacing-xl) 0;
}

.accesos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-md);
}

.acceso-card {
	background: white;
	padding: var(--spacing-lg);
	border-radius: 12px;
	border: 2px solid #e0e0e0;
	text-align: center;
	transition: all 0.3s ease;
}

.acceso-card:hover {
	border-color: var(--color-primary);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.acceso-card h3 {
	font-size: 1.5rem;
	margin-bottom: var(--spacing-sm);
	color: var(--color-text);
}

.acceso-card p {
	color: var(--color-text-light);
}

/* Footer */
.site-footer {
	background: var(--color-text);
	color: white;
	padding: var(--spacing-lg) 0;
	margin-top: var(--spacing-xl);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--spacing-md);
}

.footer-nav ul {
	display: flex;
	list-style: none;
	gap: var(--spacing-md);
}

.footer-nav a {
	color: white;
	opacity: 0.8;
}

.footer-nav a:hover {
	opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
	.header-content {
		flex-direction: column;
		gap: var(--spacing-md);
	}
	
	.main-nav ul {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.footer-content {
		flex-direction: column;
		text-align: center;
	}
	
	.accesos-grid {
		grid-template-columns: 1fr;
	}
}