/**
 * Premium CSS Stylesheet for Ecos do Céu Landing Page.
 * Design Concept: Celestial Typographic Tension
 * Palette: Dark Background, Gold, Red, Pink, Sharp Edges.
 */

/* ==========================================
   CSS CUSTOM VARIABLES & RESET
   ========================================== */
:root {
	--edc-bg-dark: #0a0a0a;
	--edc-bg-card: #141414;
	--edc-primary: #c30e17; /* Carmesim da identidade visual */
	--edc-secondary: #7a060b; /* Vermelho escuro profundo */
	--edc-gold: #c30e17;
	--edc-text-light: #f5f5f5;
	--edc-text-gray: #a0a0a0;
	--edc-border-color: #262626;
	
	--edc-font-header: 'Montserrat', sans-serif;
	--edc-font-body: 'Open Sans', sans-serif;
	
	--edc-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Local Reset to avoid theme collisions & Elementor style leaks */
.edc-wrapper {
	background-color: var(--edc-bg-dark) !important;
	color: var(--edc-text-light) !important;
	font-family: var(--edc-font-body) !important;
	line-height: 1.6 !important;
	overflow-x: hidden;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}

.edc-wrapper *,
.edc-wrapper *::before,
.edc-wrapper *::after {
	box-sizing: border-box !important;
}

.edc-wrapper p,
.edc-wrapper h1, 
.edc-wrapper h2, 
.edc-wrapper h3, 
.edc-wrapper h4,
.edc-wrapper h5,
.edc-wrapper h6,
.edc-wrapper span,
.edc-wrapper a,
.edc-wrapper div {
	font-family: inherit;
}

.edc-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================
   TYPOGRAPHY & BUTTONS
   ========================================== */
.edc-wrapper h1, 
.edc-wrapper h2, 
.edc-wrapper h3, 
.edc-wrapper h4 {
	font-family: var(--edc-font-header);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 15px 0;
}

.edc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--edc-font-header);
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 28px;
	border: 2px solid transparent;
	border-radius: 2px; /* Sharp edges */
	cursor: pointer;
	transition: var(--edc-transition);
	letter-spacing: 0.05em;
	font-size: 14px;
}

.edc-btn-primary {
	background-color: var(--edc-primary);
	color: #fff;
}

.edc-btn-primary:hover {
	background-color: transparent;
	border-color: var(--edc-primary);
	color: var(--edc-primary);
	box-shadow: 0 0 15px rgba(229, 57, 53, 0.4);
}

.edc-btn-hero {
	background: linear-gradient(135deg, var(--edc-primary) 0%, var(--edc-secondary) 100%);
	color: #fff;
	padding: 18px 40px;
	font-size: 16px;
	box-shadow: 0 0 20px rgba(236, 64, 122, 0.3);
}

.edc-btn-hero:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(236, 64, 122, 0.6);
	background: linear-gradient(135deg, var(--edc-secondary) 0%, var(--edc-primary) 100%);
}

/* ==========================================
   HEADER NAVIGATION
   ========================================== */
.edc-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(10, 10, 10, 0.95);
	border-bottom: 1px solid var(--edc-border-color);
	transition: var(--edc-transition);
}

.edc-header-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.edc-logo-container {
	display: flex;
	align-items: center;
}

.edc-logo-img {
	height: 45px;
	width: auto;
}

.edc-logo-fallback {
	font-family: var(--edc-font-header);
	font-weight: 800;
	font-size: 18px;
	color: var(--edc-primary);
	letter-spacing: 0.1em;
}

.edc-desktop-nav {
	display: flex;
	align-items: center;
	gap: 25px;
}

.edc-nav-link {
	color: var(--edc-text-light);
	text-decoration: none;
	font-family: var(--edc-font-header);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: var(--edc-transition);
}

.edc-nav-link:hover {
	color: var(--edc-gold);
}

/* Mobile Nav Toggle */
.edc-mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 6px;
}

.edc-mobile-menu-btn .edc-bar {
	width: 25px;
	height: 2px;
	background-color: var(--edc-text-light);
	transition: var(--edc-transition);
}

.edc-mobile-menu {
	display: none;
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	background-color: var(--edc-bg-dark);
	border-bottom: 1px solid var(--edc-border-color);
	padding: 25px 24px;
	z-index: 999;
}

.edc-mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.edc-mobile-link {
	color: var(--edc-text-light);
	text-decoration: none;
	font-family: var(--edc-font-header);
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ==========================================
   HERO - CELESTIAL TYPOGRAPHIC TENSION
   ========================================== */
.edc-hero {
	min-height: 100vh;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-color: var(--edc-bg-dark);
	overflow: hidden;
	padding-top: 80px;
}

/* Dynamic Light Orbs behind the title */
.edc-light-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.35;
	pointer-events: none;
	z-index: 1;
	mix-blend-mode: screen;
}

.edc-orb-1 {
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, var(--edc-primary) 0%, rgba(195,14,23,0) 70%);
	top: 20%;
	left: 15%;
}

.edc-orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--edc-secondary) 0%, rgba(122,6,11,0) 70%);
	bottom: 15%;
	right: 15%;
}

/* Motion Mode Animations */
.edc-hero-motion .edc-orb-1 {
	animation: orbPulse 8s infinite alternate ease-in-out;
}

.edc-hero-motion .edc-orb-2 {
	animation: orbPulse 10s infinite alternate-reverse ease-in-out;
}

.edc-hero-motion .edc-hero-title {
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.edc-hero-motion .edc-hero-slogan {
	animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.edc-hero-motion .edc-countdown-wrapper {
	animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.edc-hero-motion .edc-hero-cta {
	animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Static Mode Fallbacks (No Animations) */
.edc-hero-static .edc-light-orb {
	animation: none;
	transform: scale(1.1);
	opacity: 0.25;
}

.edc-hero-static .edc-hero-title,
.edc-hero-static .edc-hero-slogan,
.edc-hero-static .edc-countdown-wrapper,
.edc-hero-static .edc-hero-cta {
	animation: none;
	opacity: 1;
	transform: none;
}

@keyframes orbPulse {
	0% {
		transform: scale(1) translate(0, 0);
		opacity: 0.25;
	}
	100% {
		transform: scale(1.2) translate(30px, -20px);
		opacity: 0.45;
	}
}

.edc-hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 980px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Eyebrow Top Badge */
.edc-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(195, 14, 23, 0.12);
	border: 1px solid rgba(195, 14, 23, 0.35);
	padding: 8px 18px;
	border-radius: 50px;
	margin-bottom: 25px;
	backdrop-filter: blur(8px);
	box-shadow: 0 0 15px rgba(195, 14, 23, 0.15);
}

.edc-badge-dot {
	width: 8px;
	height: 8px;
	background-color: var(--edc-primary);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--edc-primary);
	animation: edc-badge-pulse 2s infinite ease-in-out;
}

@keyframes edc-badge-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.4); opacity: 0.6; }
}

.edc-badge-text {
	font-family: var(--edc-font-header);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #ffffff;
	text-transform: uppercase;
}

.edc-hero-title {
	font-size: clamp(2.8rem, 6.5vw, 5.5rem);
	line-height: 1.05;
	font-weight: 800;
	text-transform: uppercase;
	background: linear-gradient(180deg, #ffffff 30%, #f0a0a5 70%, var(--edc-primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 22px;
	letter-spacing: -0.02em;
	filter: drop-shadow(0 0 25px rgba(195, 14, 23, 0.25));
}

.edc-slogan-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: 100%;
	max-width: 680px;
	margin-bottom: 40px;
}

.edc-slogan-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(195, 14, 23, 0.5), transparent);
}

.edc-hero-slogan {
	font-size: clamp(13px, 1.8vw, 18px);
	font-family: var(--edc-font-header);
	font-weight: 500;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.2em;
	margin: 0;
}

/* Countdown Clock Glassmorphism */
.edc-countdown-wrapper {
	margin-bottom: 40px;
}

.edc-countdown-label {
	font-family: var(--edc-font-header);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #c30e17;
	font-weight: 700;
	margin-bottom: 14px;
}

.edc-countdown {
	display: inline-flex;
	gap: 20px;
	background: rgba(18, 18, 20, 0.75);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(195, 14, 23, 0.3);
	padding: 18px 36px;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(195, 14, 23, 0.1);
}

.edc-countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 70px;
}

.edc-count {
	font-family: var(--edc-font-header);
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.edc-countdown-item .edc-label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--edc-text-gray);
	margin-top: 6px;
}

.edc-hero-cta {
	display: block;
}

.edc-btn-hero {
	background: linear-gradient(135deg, var(--edc-primary) 0%, var(--edc-secondary) 100%);
	color: #fff;
	padding: 18px 44px;
	font-size: 15px;
	border-radius: 4px;
	box-shadow: 0 0 25px rgba(195, 14, 23, 0.4);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: var(--edc-transition);
}

.edc-btn-hero:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 0 35px rgba(195, 14, 23, 0.7);
	background: linear-gradient(135deg, var(--edc-secondary) 0%, var(--edc-primary) 100%);
	color: #fff;
}

.edc-btn-icon {
	font-size: 18px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================
   SECTION COMMON STYLING
   ========================================== */
.edc-section {
	padding: 100px 0;
	border-bottom: 1px solid var(--edc-border-color);
}

.edc-section-header {
	text-align: center;
	margin-bottom: 60px;
}

.edc-section-title {
	font-size: clamp(24px, 4.5vw, 36px);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff;
	margin-bottom: 15px;
}

.edc-section-line {
	width: 60px;
	height: 3px;
	background-color: var(--edc-primary);
	margin: 0 auto 20px auto;
}

.edc-section-subtitle {
	font-size: 15px;
	color: var(--edc-text-gray);
	max-width: 600px;
	margin: 0 auto;
}

/* ==========================================
   ABOUT & HIGHLIGHT CARDS
   ========================================== */
.edc-about-section {
	background-color: var(--edc-bg-dark);
}

.edc-about-content {
	max-width: 900px;
	margin: 0 auto;
}

.edc-about-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--edc-text-gray);
	text-align: center;
	margin-bottom: 50px;
}

.edc-highlights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.edc-highlight-card {
	background-color: var(--edc-bg-card);
	border: 1px solid var(--edc-border-color);
	padding: 40px 30px;
	text-align: center;
	border-radius: 2px; /* Sharp */
	transition: var(--edc-transition);
}

.edc-highlight-card:hover {
	transform: translateY(-5px);
	border-color: var(--edc-gold);
}

.edc-highlight-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: rgba(212, 165, 116, 0.1);
	color: var(--edc-gold);
	border-radius: 50%;
	margin-bottom: 20px;
}

.edc-highlight-icon-wrap .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
}

.edc-highlight-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
}

.edc-highlight-card-text {
	font-size: 13px;
	color: var(--edc-text-gray);
	margin: 0;
}

/* ==========================================
   SPEAKERS SECTION
   ========================================== */
.edc-speakers-section {
	background-color: #0d0d0d;
}

.edc-speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 40px;
}

.edc-speaker-card {
	background-color: var(--edc-bg-card);
	border: 1px solid var(--edc-border-color);
	border-radius: 2px;
	overflow: hidden;
	transition: var(--edc-transition);
}

.edc-speaker-card:hover {
	border-color: var(--edc-primary);
	transform: scale(1.02);
}

.edc-speaker-photo-wrap {
	height: 320px;
	background-color: #1a1a1a;
	overflow: hidden;
	position: relative;
}

.edc-speaker-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--edc-transition);
}

.edc-speaker-card:hover .edc-speaker-img {
	transform: scale(1.05);
}

.edc-speaker-img-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #404040;
}

.edc-speaker-img-fallback .dashicons {
	font-size: 80px;
	width: 80px;
	height: 80px;
}

.edc-speaker-info {
	padding: 25px;
}

.edc-speaker-name {
	font-size: 20px;
	color: #fff;
	margin-bottom: 8px;
}

.edc-speaker-bio {
	font-size: 13px;
	color: var(--edc-text-gray);
	margin-bottom: 20px;
	height: 60px;
	overflow: hidden;
}

.edc-btn-video {
	background: none;
	border: 1px solid var(--edc-gold);
	color: var(--edc-gold);
	padding: 8px 16px;
	font-family: var(--edc-font-header);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: var(--edc-transition);
}

.edc-btn-video:hover {
	background-color: var(--edc-gold);
	color: #000;
}

.edc-btn-video .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

/* ==========================================
   TESTIMONIALS SECTION (CAROUSEL)
   ========================================== */
.edc-testimonials-section {
	background-color: var(--edc-bg-dark);
}

.edc-carousel-outer {
	max-width: 750px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.edc-carousel-track {
	display: flex;
	position: relative;
	min-height: 250px;
}

.edc-testimonial-slide {
	position: absolute;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
	z-index: 1;
}

.edc-testimonial-slide.active {
	position: relative;
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.edc-testimonial-content {
	text-align: center;
	padding: 20px;
}

.edc-testimonial-text {
	font-size: 18px;
	font-style: italic;
	line-height: 1.8;
	color: var(--edc-text-light);
	margin-bottom: 30px;
}

.edc-testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.edc-testimonial-avatar {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--edc-gold);
}

.edc-testimonial-meta {
	text-align: left;
}

.edc-testimonial-name {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.edc-testimonial-role {
	font-size: 12px;
	color: var(--edc-gold);
}

/* Carousel Control Buttons */
.edc-carousel-controls {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.edc-carousel-btn {
	background-color: var(--edc-bg-card);
	border: 1px solid var(--edc-border-color);
	color: var(--edc-text-light);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	font-size: 16px;
	transition: var(--edc-transition);
}

.edc-carousel-btn:hover {
	background-color: var(--edc-primary);
	border-color: var(--edc-primary);
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.edc-newsletter-section {
	background-color: #0b0b0b;
	position: relative;
	overflow: hidden;
}

.edc-orb-newsletter {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, var(--edc-primary) 0%, rgba(229,57,53,0) 70%);
	top: -50px;
	right: -100px;
	opacity: 0.15;
}

.edc-newsletter-content {
	position: relative;
	z-index: 10;
}

.edc-newsletter-form {
	max-width: 850px;
	margin: 0 auto;
}

.edc-form-fields-wrap {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.edc-form-input {
	flex: 1 1 200px;
	background-color: var(--edc-bg-card);
	border: 1px solid var(--edc-border-color);
	color: #fff;
	padding: 14px 20px;
	border-radius: 2px; /* Sharp */
	font-family: var(--edc-font-body);
	font-size: 14px;
	outline: none;
	transition: var(--edc-transition);
}

.edc-phone-field-group {
	display: flex;
	flex: 1 1 220px;
	border: 1px solid var(--edc-border-color);
	background-color: var(--edc-bg-card);
	border-radius: 2px;
	overflow: hidden;
	transition: var(--edc-transition);
}

.edc-phone-field-group:focus-within {
	border-color: var(--edc-primary);
	box-shadow: 0 0 10px rgba(195, 14, 23, 0.2);
}

.edc-form-select {
	background-color: transparent;
	border: none;
	color: #fff;
	padding: 14px 10px 14px 15px;
	font-family: var(--edc-font-body);
	font-size: 13px;
	outline: none;
	cursor: pointer;
	max-width: 115px;
	border-right: 1px solid var(--edc-border-color);
}

.edc-form-select option {
	background-color: var(--edc-bg-card);
	color: #fff;
}

.edc-phone-field-group .edc-form-input {
	border: none;
	flex-grow: 1;
	padding-left: 10px;
}

.edc-form-input:focus {
	border-color: var(--edc-gold);
}

.edc-btn-newsletter {
	background-color: var(--edc-gold);
	color: #fff;
	flex: 0 1 180px;
}

.edc-btn-newsletter:hover {
	background-color: transparent;
	border-color: var(--edc-gold);
	color: var(--edc-gold);
}

.edc-turnstile-wrap {
	display: flex;
	justify-content: center;
	margin: 25px 0 10px 0;
	width: 100%;
}

.edc-turnstile-error {
	color: var(--edc-primary);
	font-family: var(--edc-font-header);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	margin: 10px 0;
	display: none;
}

.edc-newsletter-message {
	margin-top: 15px;
	text-align: center;
	font-size: 13px;
	height: 20px;
}

.edc-newsletter-message.success {
	color: #4CAF50;
}

.edc-newsletter-message.error {
	color: var(--edc-primary);
}

/* ==========================================
   LOCAL & ACCOMMODATIONS
   ========================================== */
.edc-local-section {
	background-color: var(--edc-bg-dark);
}

.edc-local-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.edc-local-card {
	background-color: var(--edc-bg-card);
	border: 1px solid var(--edc-border-color);
	padding: 40px;
	border-radius: 2px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.edc-card-block {
	margin-bottom: 30px;
}

.edc-card-block:last-child {
	margin-bottom: 0;
}

.edc-card-title {
	font-size: 18px;
	color: var(--edc-gold);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.edc-venue-name {
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.edc-venue-address, 
.edc-venue-city {
	color: var(--edc-text-gray);
	margin: 0;
}

.edc-tips {
	color: var(--edc-text-gray);
	margin: 0;
}

.edc-map-card {
	border: 1px solid var(--edc-border-color);
	background-color: var(--edc-bg-card);
	border-radius: 2px;
	overflow: hidden;
	height: 350px;
}

.edc-map-iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Hotel blocks */
.edc-hotel-block {
	border-top: 1px solid var(--edc-border-color);
	padding-top: 60px;
	text-align: center;
}

.edc-hotel-title {
	font-size: 22px;
	color: #fff;
	margin-bottom: 8px;
}

.edc-hotel-subtitle {
	color: var(--edc-text-gray);
	font-size: 14px;
	margin-bottom: 40px;
}

.edc-hotels-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.edc-hotel-card {
	background-color: var(--edc-bg-card);
	border: 1px solid var(--edc-border-color);
	padding: 30px;
	text-align: left;
	border-radius: 4px;
	transition: var(--edc-transition);
}

.edc-hotel-card:hover {
	border-color: var(--edc-primary);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(195, 14, 23, 0.2);
	transform: translateY(-3px);
}

.edc-hotel-name {
	font-size: 16px;
	color: #fff;
	margin-bottom: 10px;
}

.edc-hotel-detail {
	font-size: 13px;
	color: var(--edc-text-gray);
	margin: 0 0 15px 0;
}

.edc-hotel-phone {
	font-size: 13px;
	color: var(--edc-text-light);
	margin: 0;
}

.edc-hotel-phone a {
	color: var(--edc-gold);
	text-decoration: none;
}

.edc-hotel-phone a:hover {
	text-decoration: underline;
}

.edc-hotel-link {
	margin-top: 12px;
	font-size: 13px;
}

.edc-hotel-link a {
	color: var(--edc-gold);
	text-decoration: none;
	font-weight: 600;
	transition: var(--edc-transition);
}

.edc-hotel-link a:hover {
	color: #ffffff;
	text-decoration: underline;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.edc-footer {
	background-color: #050505;
	border-top: 1px solid var(--edc-border-color);
	padding: 80px 0 40px 0;
}

.edc-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1.2fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.edc-footer-col {
	display: flex;
	flex-direction: column;
}

.edc-footer-logo {
	margin-bottom: 20px;
}

.edc-logo-footer-img {
	height: 40px;
	width: auto;
}

.edc-logo-footer-text {
	font-family: var(--edc-font-header);
	font-weight: 800;
	color: var(--edc-primary);
	font-size: 16px;
}

.edc-footer-desc {
	font-size: 13px;
	color: var(--edc-text-gray);
	margin: 0;
}

.edc-footer-title {
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 25px;
	letter-spacing: 0.05em;
}

.edc-footer-links,
.edc-footer-contacts {
	list-style: none;
	padding: 0;
	margin: 0;
}

.edc-footer-links li,
.edc-footer-contacts li {
	margin-bottom: 12px;
	font-size: 13px;
	color: var(--edc-text-gray);
}

.edc-footer-links a,
.edc-footer-contacts a {
	color: var(--edc-text-gray);
	text-decoration: none;
	transition: var(--edc-transition);
}

.edc-footer-links a:hover,
.edc-footer-contacts a:hover {
	color: var(--edc-primary);
}

.edc-social-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.edc-social-icon {
	width: 40px;
	height: 40px;
	background-color: var(--edc-bg-card);
	border: 1px solid var(--edc-border-color);
	color: var(--edc-text-light);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 50%;
	transition: var(--edc-transition);
}

.edc-social-svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
}

.edc-social-ig:hover {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	border-color: transparent;
	box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
	transform: translateY(-3px) scale(1.08);
	color: #ffffff;
}

.edc-social-fb:hover {
	background-color: #1877F2;
	border-color: #1877F2;
	box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
	transform: translateY(-3px) scale(1.08);
	color: #ffffff;
}

.edc-social-yt:hover {
	background-color: #FF0000;
	border-color: #FF0000;
	box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
	transform: translateY(-3px) scale(1.08);
	color: #ffffff;
}

.edc-social-wa:hover {
	background-color: #25D366;
	border-color: #25D366;
	box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
	transform: translateY(-3px) scale(1.08);
	color: #ffffff;
}

.edc-footer-bottom {
	border-top: 1px solid var(--edc-border-color);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	font-size: 12px;
	color: var(--edc-text-gray);
}

.edc-footer-bottom p {
	margin: 0;
}

.edc-author-brand a {
	color: var(--edc-gold);
	text-decoration: none;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
}

.edc-dev-logo-img {
	height: 20px;
	width: auto;
	vertical-align: middle;
	margin-left: 6px;
	transition: var(--edc-transition);
}

.edc-dev-logo-img:hover,
.edc-dev-logo-svg:hover {
	transform: scale(1.08);
}

.edc-author-brand a:hover {
	text-decoration: none;
}

/* ==========================================
   VIDEO PLAYER MODAL
   ========================================== */
.edc-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.edc-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
}

.edc-modal-container {
	position: relative;
	width: 90%;
	max-width: 800px;
	background-color: #000;
	z-index: 2001;
	border: 1px solid var(--edc-border-color);
}

.edc-modal-close-btn {
	position: absolute;
	top: -45px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
	line-height: 1;
	transition: var(--edc-transition);
}

.edc-modal-close-btn:hover {
	color: var(--edc-primary);
}

.edc-video-aspect {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
}

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

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1200px) {
	.edc-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 30px;
	}
}

@media (min-width: 1201px) {
	.edc-footer .edc-container {
		max-width: 1400px;
	}
}

@media (max-width: 768px) {
	.edc-desktop-nav {
		display: none;
	}
	
	.edc-mobile-menu-btn {
		display: flex;
	}
	
	.edc-mobile-menu.active {
		display: block;
	}

	.edc-header-nav {
		height: 70px;
	}
	
	.edc-mobile-menu {
		top: 70px;
	}

	.edc-form-fields-wrap {
		flex-direction: column;
		gap: 15px;
		width: 100%;
		max-width: 450px;
		margin: 0 auto;
	}

	.edc-form-fields-wrap .edc-form-input,
	.edc-phone-field-group {
		flex: none;
		width: 100%;
	}

	.edc-btn-newsletter {
		flex: none;
		width: 100%;
		padding: 14px 20px;
	}

	.edc-footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.edc-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* ==========================================
   TICKETS SECTION (INGRESSOS)
   ========================================== */
.edc-tickets-section {
	background-color: #0b0b0b;
}

.edc-tickets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.edc-ticket-card {
	background-color: var(--edc-bg-card);
	border: 1px solid var(--edc-border-color);
	padding: 40px 30px;
	text-align: center;
	border-radius: 2px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: var(--edc-transition);
	position: relative;
	overflow: hidden;
}

.edc-ticket-card:hover {
	transform: translateY(-5px);
	border-color: var(--edc-primary);
	box-shadow: 0 10px 20px rgba(195, 14, 23, 0.1);
}

.edc-ticket-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--edc-primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.edc-ticket-card:hover::before {
	transform: scaleX(1);
}

.edc-ticket-title {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.edc-ticket-price-wrap {
	margin-bottom: 25px;
	padding: 10px 0;
	border-top: 1px dashed var(--edc-border-color);
	border-bottom: 1px dashed var(--edc-border-color);
}

.edc-ticket-price {
	font-family: var(--edc-font-header);
	font-size: 36px;
	font-weight: 800;
	color: var(--edc-primary);
}

.edc-ticket-body {
	flex-grow: 1;
	margin-bottom: 30px;
}

.edc-ticket-desc {
	font-size: 13px;
	color: var(--edc-text-gray);
	margin: 0;
	line-height: 1.6;
}

.edc-btn-ticket {
	width: 100%;
	background-color: transparent;
	border: 1px solid var(--edc-primary);
	color: var(--edc-primary);
	padding: 12px 20px;
	font-size: 12px;
}

.edc-ticket-card:hover .edc-btn-ticket {
	background-color: var(--edc-primary);
	color: #fff;
	box-shadow: 0 0 15px rgba(195, 14, 23, 0.4);
}

/* ==========================================
   EXIT INTENT POPUP (MODAL)
   ========================================== */
.edc-exit-container {
	max-width: 500px;
	padding: 50px 40px;
	background-color: #0c0c0c;
	text-align: center;
	border-radius: 2px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.edc-exit-title {
	font-size: 24px;
	color: #fff;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.edc-exit-text {
	font-size: 14px;
	color: var(--edc-text-gray);
	line-height: 1.7;
	margin-bottom: 30px;
}

.edc-btn-whatsapp {
	background-color: #25d366;
	color: #fff;
	border: none;
	width: 100%;
	padding: 15px 30px;
	font-size: 14px;
}

.edc-btn-whatsapp:hover {
	background-color: #20ba5a;
	color: #fff;
	box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* ==========================================
   FLOATING CTA BUTTON ("GARANTA SUA VAGA")
   ========================================== */
.edc-floating-cta-wrap {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(20px);
}

.edc-floating-cta-wrap.visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.edc-btn-floating {
	background: linear-gradient(135deg, var(--edc-primary) 0%, var(--edc-secondary) 100%);
	color: #fff;
	padding: 14px 28px;
	font-size: 12px;
	border-radius: 50px; /* Rounded pill shape for floating button */
	box-shadow: 0 4px 15px rgba(195, 14, 23, 0.4);
	animation: edc-pulse 2s infinite;
}

.edc-btn-floating:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(195, 14, 23, 0.6);
}

@keyframes edc-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(195, 14, 23, 0.7);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(195, 14, 23, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(195, 14, 23, 0);
	}
}

/* ==========================================
   SCROLL REVEAL (EFEITO ENTRE SESSÕES - NASCENDO AS INFORMAÇÕES)
   ========================================== */
.edc-reveal {
	opacity: 0;
	transform: translateY(50px);
	filter: blur(8px);
	will-change: opacity, transform, filter;
	transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.edc-revealed {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

/* Staggered Delay for grid items to reveal sequentially */
.edc-highlights-grid .edc-highlight-card:nth-child(1) { transition-delay: 0.1s; }
.edc-highlights-grid .edc-highlight-card:nth-child(2) { transition-delay: 0.25s; }
.edc-highlights-grid .edc-highlight-card:nth-child(3) { transition-delay: 0.4s; }
.edc-highlights-grid .edc-highlight-card:nth-child(4) { transition-delay: 0.55s; }

.edc-tickets-grid .edc-ticket-card:nth-child(1) { transition-delay: 0.1s; }
.edc-tickets-grid .edc-ticket-card:nth-child(2) { transition-delay: 0.25s; }
.edc-tickets-grid .edc-ticket-card:nth-child(3) { transition-delay: 0.4s; }
.edc-tickets-grid .edc-ticket-card:nth-child(4) { transition-delay: 0.55s; }

.edc-speakers-grid .edc-speaker-card:nth-child(1) { transition-delay: 0.1s; }
.edc-speakers-grid .edc-speaker-card:nth-child(2) { transition-delay: 0.25s; }
.edc-speakers-grid .edc-speaker-card:nth-child(3) { transition-delay: 0.4s; }
.edc-speakers-grid .edc-speaker-card:nth-child(4) { transition-delay: 0.55s; }

.edc-hotels-grid .edc-hotel-card:nth-child(1) { transition-delay: 0.1s; }
.edc-hotels-grid .edc-hotel-card:nth-child(2) { transition-delay: 0.25s; }
.edc-hotels-grid .edc-hotel-card:nth-child(3) { transition-delay: 0.4s; }
