/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
}

.whatsapp-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #25d366;
	border-radius: 50%;
	color: white;
	text-decoration: none;
	font-size: 28px;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	animation: pulse 2s infinite;
	position: relative;
}

.whatsapp-tooltip {
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	background: #333;
	color: white;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
}

.whatsapp-tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #333;
}

.whatsapp-btn:hover .whatsapp-tooltip {
	opacity: 1;
	visibility: visible;
	bottom: 75px;
}

.whatsapp-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
	0% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	}
	50% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
	}
	100% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	}
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #d5c09e 0%, #4b463c 50%, #9c1612 100%);
    overflow: hidden;
    padding-bottom: 0;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.stars {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
		radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
		radial-gradient(1px 1px at 90px 40px, #f0f0f0, transparent),
		radial-gradient(
			1px 1px at 130px 80px,
			rgba(240, 240, 240, 0.6),
			transparent
		), radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
	background-repeat: repeat;
	background-size: 200px 100px;
	animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
	0% {
		opacity: 0.3;
	}
	100% {
		opacity: 1;
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #ffffff;
	max-width: 800px;
	margin: 0 auto;
}

.logo-container {
	margin-bottom: -1rem;
	animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo {
	max-width: 250px;
	height: auto;
	filter: drop-shadow(0 10px 20px rgba(156, 22, 18, 0.6));
	transition: transform 0.3s ease;
}

.hero-logo:hover {
	transform: scale(1.05);
}

@keyframes logoFloat {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.hero-title {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	background: linear-gradient(45deg, #d5c09e, #ffffff, #d5c09e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: titleGlow 3s ease-in-out infinite alternate;
	text-shadow: 0 0 20px rgba(213, 192, 158, 0.5);
	white-space: nowrap;
}

@keyframes titleGlow {
	from {
		text-shadow: 0 0 20px rgba(213, 192, 158, 0.5);
		filter: brightness(1);
	}
	to {
		text-shadow: 0 0 30px rgba(213, 192, 158, 0.8);
		filter: brightness(1.1);
	}
}

.hero-subtitle {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.original-price {
	font-size: 1.4rem;
	color: #999;
	text-decoration: line-through;
	font-weight: 600;
}

.current-price {
	font-size: 1.3rem;
	color: #9c1612;
	font-weight: 700;
	background: linear-gradient(135deg, #d5c09e 0%, #ffffff 100%);
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	box-shadow: 0 3px 10px rgba(156, 22, 18, 0.3);
}

.hero-description {
	font-size: 1.1rem;
	margin-bottom: 3rem;
	color: #f0f0f0;
	line-height: 1.8;
}

.banner-container {
    margin-top: -2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-banner {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-banner:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Webinar Section */
.webinar-section {
    padding: 2rem 0 5rem 0;
    background: linear-gradient(135deg, #d5c09e 0%, #4b463c 50%, #9c1612 100%);
    position: relative;
    overflow: hidden;
    margin-top: -2rem;
}

.webinar-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.webinar-stars {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
		radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
		radial-gradient(1px 1px at 90px 40px, #f0f0f0, transparent),
		radial-gradient(
			1px 1px at 130px 80px,
			rgba(240, 240, 240, 0.6),
			transparent
		), radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
	background-repeat: repeat;
	background-size: 200px 100px;
	animation: twinkle 4s ease-in-out infinite alternate;
}

.webinar-modern {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.webinar-main {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	padding: 3rem;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.webinar-badge {
	display: inline-block;
	background: linear-gradient(135deg, #9c1612 0%, #d5c09e 100%);
	color: white;
	padding: 0.5rem 1.2rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	letter-spacing: 0.5px;
	box-shadow: 0 5px 15px rgba(156, 22, 18, 0.3);
}

.webinar-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.webinar-desc {
	font-size: 1.1rem;
	color: #f0f0f0;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.webinar-info {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
}

.info-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.info-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.info-label {
	font-size: 0.9rem;
	color: #d5c09e;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.info-value {
	font-size: 1.2rem;
	font-weight: 600;
	color: white;
	margin-bottom: 0.3rem;
}

.info-detail {
	font-size: 0.8rem;
	color: #d5c09e;
	font-weight: 500;
}

.modern-btn {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: white;
	border: none;
	padding: 1.2rem 2.5rem;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
	position: relative;
	overflow: hidden;
}

.modern-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.modern-btn:hover::before {
	left: 100%;
}

.modern-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 45px rgba(37, 211, 102, 0.5);
}

.modern-btn i {
    font-size: 1.2rem;
}

/* Agenda Section */
.agenda-section {
    padding: 2rem 0 5rem 0;
    background: linear-gradient(135deg, #4b463c 0%, #9c1612 100%);
    position: relative;
    overflow: hidden;
    margin-top: -2rem;
}

.agenda-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #f0f0f0, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(240,240,240,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
    z-index: 1;
}

.agenda-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.agenda-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.agenda-header p {
    font-size: 1.1rem;
    color: #d5c09e;
    font-weight: 500;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #d5c09e, #9c1612);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    cursor: pointer;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c1612 0%, #d5c09e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(156, 22, 18, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(156, 22, 18, 0.4);
}

.marker-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.timeline-content {
    flex: 1;
    margin: 0 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.timeline-item.active .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.timeline-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.day-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.day-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.day-date {
    font-size: 1rem;
    color: #d5c09e;
    font-weight: 500;
}

.expand-icon {
    font-size: 1.5rem;
    color: #d5c09e;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.timeline-item.active .expand-icon {
    transform: rotate(45deg);
}

.timeline-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-details.active {
    max-height: 500px;
}

.agenda-placeholder {
    padding: 2rem;
    text-align: left;
}

.agenda-placeholder p {
    color: #f0f0f0;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.join-btn {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: white;
	border: none;
	padding: 1.2rem 2.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
	position: relative;
	overflow: hidden;
}

.join-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.join-btn:hover::before {
	left: 100%;
}

.join-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 45px rgba(37, 211, 102, 0.5);
}

.join-btn i {
	font-size: 1.3rem;
}

.cta-note {
	margin-top: 1.5rem;
	color: #d5c09e;
	font-size: 1rem;
	font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-logo {
		max-width: 200px;
	}

	.hero-title {
		font-size: 1.8rem;
	}

	.hero-subtitle {
		font-size: 1.6rem;
	}

	.pricing-section {
		gap: 0.8rem;
	}

	.original-price {
		font-size: 1.2rem;
	}

	.current-price {
		font-size: 1.1rem;
		padding: 0.25rem 0.6rem;
	}

	.hero-features {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 1rem;
	}

	.feature {
		padding: 1rem;
	}

	.webinar-content {
		padding: 2rem;
	}

	.webinar-main {
		padding: 2rem;
	}

	.webinar-title {
		font-size: 2rem;
	}

	.info-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.info-item {
		padding: 1rem;
	}

	.whatsapp-float {
		bottom: 20px;
		right: 20px;
	}

	.whatsapp-btn {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.hero-logo {
		max-width: 160px;
	}

	.hero-title {
		font-size: 1.5rem;
	}

	.hero-subtitle {
		font-size: 1.3rem;
	}

	.pricing-section {
		gap: 0.6rem;
	}

	.original-price {
		font-size: 1rem;
	}

	.current-price {
		font-size: 1rem;
		padding: 0.2rem 0.5rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.webinar-content {
		padding: 1.5rem;
	}

	.webinar-main {
		padding: 1.5rem;
	}

	.webinar-title {
		font-size: 1.8rem;
	}

	.info-item {
		padding: 0.6rem;
	}

    .modern-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .agenda-header h2 {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .timeline-content {
        margin: 1rem 0 0 0;
        width: 100%;
    }
    
    .timeline-header {
        padding: 1.2rem;
    }
    
    .day-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .agenda-header h2 {
        font-size: 1.8rem;
    }
    
    .timeline-header {
        padding: 1rem;
    }
    
    .day-name {
        font-size: 1.2rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .marker-number {
        font-size: 1.2rem;
    }
}
