:root {
	--bg-overlay: rgba(0, 0, 0, 0.75);
	--text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	--border-radius: 15px;
	--spacing-lg: 50px;
	--spacing-md: 30px;
	--primary-color: #00d4ff;
	--secondary-color: #ff6b35;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: #ffffff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	display: flex;
	flex-direction: column;
}

/* Language Selector */
.language-selector {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
}

.language-dropdown .dropdown-toggle {
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(0, 212, 255, 0.3);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.language-dropdown .dropdown-toggle:hover {
	background: rgba(0, 212, 255, 0.2);
	border-color: var(--primary-color);
	transform: translateY(-2px);
}

.language-dropdown .dropdown-menu {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(0, 212, 255, 0.3);
	border-radius: 15px;
	padding: 0.5rem;
	min-width: 200px;
}

.language-dropdown .dropdown-item {
	color: white;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
}

.language-dropdown .dropdown-item:hover {
	background: rgba(0, 212, 255, 0.2);
	color: var(--primary-color);
}

.language-dropdown .dropdown-item.active {
	background: rgba(0, 212, 255, 0.3);
	color: var(--primary-color);
}

.flag-icon {
	font-size: 1.5rem;
}

/* Hero Header */
.hero-header {
	background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
	padding: 3rem 0;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	position: relative;
	overflow: hidden;
	margin-top: 80px;
}

.hero-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
	background-size: cover;
	opacity: 0.3;
}

.hero-title {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: none;
	position: relative;
	z-index: 1;
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
	}
	to {
		filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
	}
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.5rem);
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	letter-spacing: 2px;
	position: relative;
	z-index: 1;
}

.hero-divider {
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	margin: 1.5rem auto;
	border-radius: 2px;
	position: relative;
	z-index: 1;
}

/* Content Area */
main {
	flex: 1;
}

.content-area {
	background: var(--bg-overlay);
	backdrop-filter: blur(10px);
	border-radius: var(--border-radius);
	padding: var(--spacing-md);
	margin: var(--spacing-lg) auto;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

.content-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('https://sasteamofficial.com/assets/images/bgd/bgd_sas_01.webp') no-repeat center center;
	background-size: contain;
	opacity: 0.15;
	border-radius: var(--border-radius);
	z-index: -1;
	pointer-events: none;
}

.logo-container {
	margin-bottom: 2rem;
}

.logo-image {
	max-height: 150px;
	width: auto;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
	transition: transform 0.3s ease;
}

.logo-image:hover {
	transform: scale(1.05);
}

.main-title {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 700;
	text-shadow: var(--text-shadow);
	margin-bottom: 2rem;
	letter-spacing: 1px;
}

.month-section {
	margin-bottom: 2rem;
}

.month-title {
	font-size: 1.5rem;
	font-weight: 600;
	padding-bottom: 0.75rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	text-shadow: var(--text-shadow);
}

.event-list {
	list-style: none;
	padding: 0;
}

.event-item {
	padding: 0.75rem 0;
	font-size: 1.1rem;
	line-height: 1.6;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	padding-left: 1.5rem;
}

.event-item::before {
	content: "▸";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

.event-item:hover {
	padding-left: 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 5px;
}

.event-item:last-child {
	border-bottom: none;
}

/* Footer Styles */
.site-footer {
	background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
	padding: 3rem 0 1.5rem;
	margin-top: auto;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
	border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.footer-section {
	text-align: center;
}

.footer-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.social-links {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	text-decoration: none;
	border: 2px solid transparent;
}

.social-link:hover {
	transform: translateY(-5px) scale(1.1);
	border-color: var(--primary-color);
	background: rgba(0, 212, 255, 0.2);
	color: var(--primary-color);
	box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.social-link.facebook:hover { border-color: #1877f2; color: #1877f2; }
.social-link.instagram:hover { border-color: #e4405f; color: #e4405f; }
.social-link.youtube:hover { border-color: #ff0000; color: #ff0000; }
.social-link.whatsapp:hover { border-color: #25d366; color: #25d366; }

.view-counter {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: rgba(0, 212, 255, 0.1);
	border: 2px solid rgba(0, 212, 255, 0.3);
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
}

.view-counter i {
	font-size: 1.3rem;
}

.info-link {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: #ffffff;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.info-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
	color: #ffffff;
}

.footer-bottom {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

/* Loading & Error */
.loading {
	text-align: center;
	padding: 3rem;
	font-size: 1.2rem;
}

.error-message {
	background: rgba(220, 53, 69, 0.2);
	border: 1px solid rgba(220, 53, 69, 0.5);
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
	text-align: center;
}

.spinner {
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top: 3px solid var(--primary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 2rem auto;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-in {
	animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsividade */
@media (max-width: 768px) {
	.language-selector {
		top: 10px;
		right: 10px;
	}

	.hero-header {
		padding: 2rem 0;
		margin-top: 70px;
	}

	.content-area {
		margin: 20px auto;
		padding: 20px;
	}

	.logo-image {
		max-height: 100px;
	}

	.event-item {
		font-size: 1rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}

	.site-footer {
		padding: 2rem 0 1rem;
	}
}

@media (min-width: 768px) {
	.footer-content {
		flex-direction: row;
		justify-content: space-around;
		align-items: flex-start;
	}

	.footer-section {
		text-align: left;
	}

	.social-links {
		justify-content: flex-start;
	}
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* permite quebra em telas pequenas */
  gap: 10px;
  font-size: 2rem;
  text-align: center;
  margin: 20px auto;
}

.hero-title img {
  width: 36px;
  height: 36px;
}

@media (max-width: 480px) {
  .hero-title {
	font-size: 1.5rem;
	gap: 6px;
  }

  .hero-title img {
	width: 28px;
	height: 28px;
  }
}



    .taxas-wrapper {
        background: rgba(10, 10, 10, 0.78);
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 24px;
        padding: 32px;
        backdrop-filter: blur(10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.28);
        color: #fff;
    }

    .taxas-badge {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 999px;
        background: linear-gradient(135deg, #00d4ff, #4f46e5);
        color: #fff;
        font-weight: 700;
        letter-spacing: .5px;
        font-size: .9rem;
        box-shadow: 0 8px 24px rgba(0, 212, 255, 0.25);
    }

    .taxas-titulo {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    .taxas-subtitulo {
        font-size: 1.05rem;
        color: rgba(255,255,255,.75);
    }

    .grupo-card {
        background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 20px;
        padding: 22px;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    }

    .grupo-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .grupo-icon,
    .diploma-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #00d4ff, #7c3aed);
        color: #fff;
        font-size: 1.4rem;
        box-shadow: 0 10px 24px rgba(0, 212, 255, .22);
        flex-shrink: 0;
    }

    .grupo-titulo {
        font-size: 1.45rem;
        font-weight: 800;
    }

    .grupo-texto {
        color: rgba(255,255,255,.68);
    }

    .taxa-item-col {
        display: flex;
    }

    .taxa-item {
        width: 100%;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 18px;
        padding: 16px;
        transition: all .25s ease;
        position: relative;
        overflow: hidden;
    }

    .taxa-item::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        border-radius: 18px 0 0 18px;
        background: #00d4ff;
        opacity: .95;
    }

    .taxa-item:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.08);
        box-shadow: 0 12px 24px rgba(0,0,0,.18);
    }

    .taxa-topo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    .taxa-icone {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: #fff;
        background: linear-gradient(135deg, #1f2937, #111827);
        border: 1px solid rgba(255,255,255,.10);
        flex-shrink: 0;
    }

    .taxa-nome {
        font-size: 1rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }

    .taxa-categoria {
        display: inline-block;
        font-size: .75rem;
        color: rgba(255,255,255,.65);
    }

    .taxa-valor {
        font-size: 1.5rem;
        font-weight: 900;
        color: #fff;
        letter-spacing: .3px;
    }

    .taxa-valor small {
        font-size: .8rem;
        color: rgba(255,255,255,.55);
        font-weight: 600;
    }

    .cor-cinza::before   { background: linear-gradient(180deg, #9ca3af, #6b7280); }
    .cor-amarela::before { background: linear-gradient(180deg, #facc15, #eab308); }
    .cor-laranja::before { background: linear-gradient(180deg, #fb923c, #ea580c); }
    .cor-verde::before   { background: linear-gradient(180deg, #4ade80, #16a34a); }
    .cor-azul::before    { background: linear-gradient(180deg, #60a5fa, #2563eb); }
    .cor-roxa::before    { background: linear-gradient(180deg, #c084fc, #7c3aed); }
    .cor-marrom::before  { background: linear-gradient(180deg, #b08968, #7f5539); }
    .cor-preta::before   { background: linear-gradient(180deg, #374151, #111827); }

    .taxas-alerta {
        background: rgba(13, 202, 240, .10);
        border: 1px solid rgba(13, 202, 240, .25);
        border-radius: 20px;
        color: #fff;
        padding: 22px;
    }

    .taxas-alerta-icon {
        font-size: 1.5rem;
        color: #67e8f9;
        margin-top: 2px;
    }

    .diploma-card {
        background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(16,185,129,.10));
        border: 1px solid rgba(34,197,94,.25);
        border-radius: 20px;
        padding: 22px;
        color: #fff;
    }

    .diploma-valor {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 900;
        color: #86efac;
        line-height: 1;
    }

    @media (max-width: 767.98px) {
        .taxas-wrapper {
            padding: 22px 16px;
        }

        .grupo-card,
        .diploma-card,
        .taxas-alerta {
            padding: 18px;
        }

        .taxa-valor {
            font-size: 1.35rem;
        }
    }
