
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #334155;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 50%, #f0fdfa 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-icon i {
    font-size: 1.75rem;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #0891b2 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #334155;
    transition: all 0.3s;
}

.nav-link:hover {
    background: #ecfeff;
    color: #0891b2;
}

.nav-link.active {
    background: #06b6d4;
    color: white;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #334155;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #0891b2;
}

.nav-mobile {
    display: none;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #334155;
    transition: all 0.3s;
}

.nav-link-mobile:hover {
    background: #ecfeff;
}

.nav-link-mobile.active {
    background: #06b6d4;
    color: white;
}

/* Buttons */
.btn-primary {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.btn-outline {
    padding: 0.75rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-secondary {
    padding: 0.75rem 2rem;
    background: #475569;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #334155;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-download-header {
    display: none;
}

/* Page System */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* --- HERO SECTION (INÍCIO) --- */

#home-page {
    background: #00ffff;
    
}
.hero {
    position: relative;
    min-height: 60vh;
    background: #06b6d4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 78, 99, 0.9) 0%, rgba(19, 78, 74, 0.85) 50%, rgba(22, 78, 99, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(6, 182, 212, 0.5);
}

.icon-outer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-inner {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-inner i {
    font-size: 2.5rem;
    color: white;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    color: white; 
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 32rem;
    margin: 0 auto;
}

.stat-card {
    padding: 0.75rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.9);
}


.section-description {
    color: white !important;
    font-size: 1.125rem;
    
}
.hero-section-description {
    margin-top: 2rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}


/* Features Section */
.features-section {
    padding: 0; /* Remove todo o padding vertical da secção */
    background: #00ffff;
}

.section-header {
    text-align: center;
    margin-top: 2rem; /* Reduz o espaço antes do título da secção */
    margin-bottom: 4rem; /* Reduz o espaço após o título da secção */
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.375rem;
    color: black;
    max-width: 42rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* Força a ter apenas 1 coluna (1 cartão por linha) */
    gap: 1.5rem;
    margin: 0 auto; /* Centra a lista de cartões na página */
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
    text-align: left;
}

.gradient-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    color: #0891b2;
}

.gradient-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    color: #0891b2;
}

.gradient-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: #059669;
}

.gradient-yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 146, 60, 0.2) 100%);
    color: #d97706;
}

.gradient-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    color: #dc2626;
}

.gradient-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    color: #7c3aed;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.7;
}

/* Features Blocks */
.features-blocks {
    display: grid;
    grid-template-columns: 1fr !important;
    width: 100vw !important; 
    margin-left: calc(50% - 50vw) !important; 
    margin-right: calc(50% - 50vw) !important;
}

.feature-block {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100vw !important;
    border-radius: 0; 
    padding: 4rem max(1.5rem, calc((100vw - 1280px) / 2)) !important; 
}
.feature-block-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.feature-block p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-block p:last-of-type {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Estrutura Flexível Alternada das Features */
.feature-flex-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.feature-flex-container.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 2.5; /* Dá maior largura ao texto para ocupar muito menos espaço vertical */
    padding: 0; /* Reduz o espaço vertical do conteúdo de texto */
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Empurra a imagem para a direita */
    margin-top: 2rem; /* Adiciona um pouco de espaço acima da imagem para evitar que fique muito colada ao texto */
}

.feature-flex-container.reverse .feature-image {
    justify-content: flex-start; /* Empurra a imagem para a esquerda no layout invertido */
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 450px; /* Reduzido para evitar que a altura da imagem ocupe muito espaço vertical */
}



/* Impact Section */
.impact-section {
    padding: 4rem 1.5rem;
    background: #1dcaff;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: black;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.impact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: black;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.section-header-white {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.section-title-white {
    font-size: 2rem;
    font-weight: bold;
    color: black;
    margin-bottom: 1rem;
}

.section-description-white {
    font-size: 1.125rem;
    color: black;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.impact-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
}

.impact-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    margin-bottom: 0.5rem;
}

.impact-description {
    color: black;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 1.5rem;
}

.cta-card {
    padding: 3rem;
    border-radius: 1.5rem;
    background: #06b6d4 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: white !important;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-requirements {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* Page Hero */

#about-page{
    background: #00ffff;
    
}

/* Igualar a cor de fundo dos cards na página "Sobre" à cor da página */
#about-page .symbol-box,
#about-page .content-block,
#about-page .benefit-card,
#about-page .color-showcase,
#about-page .contact-box {
    background: #00ffff !important;
}

#about-page .content-block *,
#about-page .benefit-card *,
#about-page .symbol-box *,
#about-page .color-showcase *,
#about-page .contact-box * {
    color: black !important; 
}

/* Manter o ícone do símbolo (a gota de água) branco dentro do círculo */
#about-page .symbol-icon i {
    color: white !important;
}

/* --- TOPO DE TODAS AS PÁGINAS (Sobre, FAQ, Jogos, Blog, Termos, Privacidade) --- */
.page-hero {
    padding: 3.5rem 1.5rem !important; /* Este valor força o mesmo tamanho (mais reduzido) em todas as páginas */
    background: #00ff00; /* Cor de fundo (podes tirar esta linha se preferires usar cores diferentes por página no HTML) */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: white;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: white;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.page-hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-hero-title {
    font-size: 2rem !important;
    font-weight: bold;
    color: #1e293b !important;
    margin-bottom: 0.5rem;
}

.page-hero-description {
    font-size: 1.125rem !important;
    color: #334155 !important;
    font-weight: 500;
    line-height: 1.8;
}

/* Content Section */
.content-section {
    padding: 5rem 1.5rem;
}

.content-block {
    margin-bottom: 4rem;
}

.content-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-icon {
    color: #0891b2;
}

.content-text {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.highlight-box {
    padding: 1.5rem;
    background: #06b6d4 !important;
    color: white !important;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.highlight-box p {
    font-size: 1.125rem;
    font-weight: 500;
    color: white !important;
    margin: 0;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.benefit-card {
    padding: 1.5rem;
    background: #06b6d4 !important;
    color: white !important;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gradient-cyan-light {
    background: transparent;
}

.gradient-green-light {
    background: transparent;
}

.gradient-blue-light {
    background: transparent;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white !important;
    margin-bottom: 0.75rem;
}

.benefit-text {
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.7;
}

.symbol-box {
    padding: 2.5rem;
    background: #06b6d4 !important;
    color: white !important;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.symbol-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbol-icon i {
    color: white;
    font-size: 1.5rem;
}

.color-showcase {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    color: white;
}

.color-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.color-description {
    font-size: 1.125rem;
    color: #cffafe;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.color-swatches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.color-swatch {
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 500;
}

.cyan-400 {
    background: #22d3ee;
}

.cyan-500 {
    background: #06b6d4;
}

.teal-500 {
    background: #14b8a6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

.tech-card {
    padding: 1.5rem 0;
}

.tech-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: black;
    margin-bottom: 1rem;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    padding: 0.5rem 0;
    color: black;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #06b6d4;
    border-radius: 50%;
}

.tech-dot.teal {
    background: #14b8a6;
}

.tech-subsection {
    margin-bottom: 0.75rem;
    color: white !important;
}

.contact-box {
    padding: 2.5rem;
    background: #06b6d4 !important;
    color: white !important;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email:hover {
    color: #ecfeff !important;
}

.contact-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8) !important;
    margin-top: 1.5rem;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.accordion-item {
    background: #06b6d4 !important;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(236, 254, 255, 0.5);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.accordion-title span {
    font-size: 1.25rem;
    font-weight: 600;
    color: white !important;
}

.accordion-icon {
    font-size: 1.25rem;
    color: white !important;
}

.accordion-icon.yellow {
    color: #eab308;
}

.accordion-icon.orange {
    color: #f97316;
}

.accordion-icon.red {
    color: #ef4444;
}

.accordion-icon.pink {
    color: #ec4899;
}

.accordion-icon.cyan {
    color: #06b6d4;
}

.accordion-icon.purple {
    color: #a855f7;
}

.accordion-icon.teal {
    color: #14b8a6;
}

.accordion-arrow {
    font-size: 1rem;
    color: white !important;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 1.5rem;
}

.accordion-content.active {
    max-height: 1500px;
    padding: 0 1.5rem 1.25rem;
    font-size: 1.125rem;
}

.accordion-content p {
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.7;
    margin: 0;
}

.help-box {
    background: #00ff00!important;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    color: white !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.help-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.help-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 2rem;
}

/* Games */

#games-page {
    background: #00ffff;
}

.game-card {
    background: #06b6d4 !important;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.game-header {
    padding: 2rem;
    background: rgba(0,0,0,0.1);
    color: white !important;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.game-icon i {
    font-size: 2.5rem;
}

.game-title {
    font-size: 2rem;
    font-weight: bold;
    color: white !important;
    margin: 0;
}

.game-subtitle {
    color: rgba(255,255,255,0.9) !important;
    margin: 0;
}

.game-content {
    padding: 2rem;
}

.game-section {
    margin-bottom: 2rem;
}

    .contact-email {
        font-size: 1.25rem;
    }

.game-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-instructions {
    background: rgba(0,0,0,0.1);
    padding: 1.5rem;
    border-radius: 1rem;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.instruction-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: rgba(255,255,255,0.2);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.instruction-step p {
    color: white !important;
    padding-top: 0.25rem;
    margin: 0;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 1rem;
}

.prize-card {
    padding: 1.5rem 0;
    text-align: center;
    border-radius: 1rem;
}

.prize-card.gold {
    background: #00ff00 !important;
    border: none;
}

.prize-card.silver {
    background: #1dcaff !important;
    border: none;
}

.prize-card.bronze {
    background: #d3d3d3 !important;
    border: none;
}

.prize-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.prize-condition {
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
}

.prize-amount {
    font-size: 0.95rem;
    color: #64748b;
}

.alert-box {
    padding: 1rem 0;
    display: flex;
    gap: 0.75rem;
    color: #334155;
    line-height: 1.7;
}

.alert-box i {
    color: #0891b2;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.rules-card {
    margin-bottom: 3rem;
}

.rules-header {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rules-header i {
    color: #334155;
    font-size: 1.5rem;
}

.rules-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin: 0;
}

.rules-content {
    padding: 2rem 0;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: black !important;
    line-height: 1.7;
   
}

.rules-list li::before {
    content: '•';
    color: black !important;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.4rem;
    line-height: 1;
}

/* Blog */
#blog-page {
    background: #00ffff !important;
    
}
.blog-filters {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 76px;
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: 1px solid #cbd5e1;
    background: white;
    color: #334155;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #ecfeff;
}

.filter-btn.active {
    background: #06b6d4;
    color: white;
    border-color: #06b6d4;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
}

.blog-card {
    background: #06b6d4 !important;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: #06b6d4;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white !important;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: #ecfeff !important;
}

.blog-excerpt {
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-tag {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8) !important;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-tag i {
    font-size: 0.625rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8) !important;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#terms-page{
    background: #00ffff;
}

#privacy-page{
    background: #00ffff;
}

/* Footer */
.footer {
    background: #1dcaff;
    color: black;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.logo-text-footer {
    font-size: 1.5rem;
    font-weight: bold;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: black;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #06b6d4;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: black;
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: black;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: black;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 0.5rem;
}

.footer-email:hover {
    color: black;
}

.footer-note {
    font-size: 0.95rem;
    color: black;
    margin-top: 0.5rem;
}

.footer-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: black;
    margin-bottom: 0.5rem;
}

.footer-download {
    display: block;
    font-size: 0.95rem;
    color: black;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-download:hover {
    color: black;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: black;
}

/* Responsive */
@media (max-width: 768px) {
    /* Header & Navigation */
    .nav-desktop,
    .btn-download-header {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-container {
        padding: 0.75rem 1rem;
    }

    .logo-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 350px;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    /* Sections */
    .features-section,
    .impact-section,
    .cta-section,
    .content-section {
        padding: 3rem 1rem;
    }

    /* Padding específico para a secção de features em mobile/tablet */
    .features-section {
        padding: 2rem 1rem 0 1rem;
        padding: 0; /* Remove todo o padding vertical da secção em mobile/tablet */
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title,
    .page-hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-description,
    .section-description-white {
        font-size: 1.25rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        padding: 1rem 1.25rem;
    }

    .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .accordion-title span {
        font-size: 1.25rem;
    }

    .accordion-content p {
        font-size: 1.125rem;
    }
    
    .feature-flex-container, .feature-flex-container.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    /* Impact & Cards */
    .impact-grid,
    .benefits-grid,
    .color-swatches {
        grid-template-columns: 1fr;
    }

    .impact-card {
        padding: 1.5rem;
    }

    .impact-image {
        height: 12rem;
    }

    .impact-title {
        font-size: 1.25rem;
    }

    .color-swatches {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    /* Buttons */
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }

    .btn-primary,
    .btn-outline,
    .btn-secondary {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }

    /* CTA & Help */
    .cta-card,
    .help-box,
    .contact-box {
        padding: 2rem 1.5rem;
    }

    .cta-title,
    .help-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-description,
    .help-description,
    .contact-description {
        font-size: 1.05rem;
    }

    /* Games */
    .game-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .game-icon {
        width: 3rem;
        height: 3rem;
    }

    .game-icon i {
        font-size: 1.75rem;
    }

    .game-title {
        font-size: 1.5rem;
    }

    .game-content {
        padding: 1.5rem 0;
    }

    .game-section-title {
        font-size: 1.25rem;
    }

    /* Prizes */
    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .prize-number {
        font-size: 1.5rem;
    }

    .prize-card {
        padding: 1rem 0;
    }

    /* Rules */
    .rules-list li {
        padding: 0.4rem 0 0.4rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-image {
        height: 10rem;
    }

    .blog-card {
        margin-bottom: 0;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .blog-filters {
        top: 0;
        padding: 1rem;
    }

    /* Footer */
    .footer-container {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        font-size: 0.8rem;
    }

    .footer-menu,
    .footer-description {
        font-size: 0.9rem;
    }

    /* Tech Grid */
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-card {
        padding: 1.25rem 0;
    }

    .tech-list li {
        font-size: 1rem;
    }

    /* Highlight Boxes */
    .highlight-box {
        padding: 1rem 0;
        margin: 1.5rem 0;
    }

    .highlight-box p {
        font-size: 1.05rem;
    }

    /* Page Hero */
    .page-hero {
        padding: 3rem 1.5rem;
    }

    .page-hero-icon {
        font-size: 2.5rem;
    }

    .page-hero-description {
        font-size: 1.125rem;
    }

    /* Content */
    .content-block {
        padding: 2rem 1.5rem !important;
    }

    .symbol-box, .color-showcase, .contact-box, .help-box {
        padding: 1.5rem !important;
    }

    .content-title {
        font-size: 1.75rem;
        gap: 0.5rem;
    }

    .content-text {
        font-size: 1.125rem;
    }

    /* Language Selector Mobile */
    .lang-selector-mobile {
        justify-content: space-around;
    }

    .lang-btn img {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Extra small devices - phones */
@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem 0.75rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero {
        height: auto;
        min-height: 300px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .stat-value {
        font-size: 1.375rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 1.125rem;
    }

    .features-section,
    .impact-section,
    .cta-section,
    .content-section {
        padding: 2rem 0.75rem;
    }

    .features-section {
        padding: 1.5rem 0.75rem 0 0.75rem;
    }

    .accordion-header {
        padding: 0.75rem 1rem;
    }

    .feature-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .accordion-title span {
        font-size: 1rem;
    }

    .accordion-content p {
        font-size: 1.125rem;
    }

    .color-swatches {
        grid-template-columns: 1fr;
    }

    .cta-card,
    .help-box {
        padding: 2rem 1.5rem;
    }

    .cta-title,
    .help-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }

    .game-header {
        padding: 1rem;
    }

    .game-title {
        font-size: 1.5rem;
    }

    .game-content {
        padding: 1rem;
    }

    .prizes-grid {
        grid-template-columns: 1fr;
    }

    .prize-card {
        padding: 0.75rem 0;
    }

    .contact-email {
        font-size: 1.1rem;
    }

    .footer-container {
        padding: 1.5rem 0.75rem;
    }

    .footer-social {
        gap: 0.5rem;
    }

    .social-link {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .btn-download-header {
        display: inline-flex;
    }
}

/* --- NOVAS ADIÇÕES E MODIFICAÇÕES --- */

/* Selector de Idioma (Bandeiras) */
.lang-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
}

.lang-btn {
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-btn img {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.lang-btn:hover, .lang-btn.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}
.lang-selector-mobile {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 1rem;
    justify-content: center;
}

/* Modificação no Background do Hero (Tom Ciano como pedido) */
.hero-overlay-cyan {
    position: absolute;
    inset: 0;
    /* Substituição do gradiente escuro pelo ciano */
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.9) 0%, rgba(8, 145, 178, 0.85) 50%, rgba(6, 182, 212, 0.9) 100%);
}

/* Novo Texto Pós-Estatísticas do Hero */
.hero-post-stats-text {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Novo Layout Detalhado para o "Como Funciona" */
.features-detailed-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.feature-detailed-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem 0;
}
.feature-detailed-row.reverse {
    flex-direction: row-reverse;
}
.feature-text-content {
    flex: 1;
}
.feature-text-content h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}
.feature-text-content p {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.8;
}
.feature-image-wrapper {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .feature-detailed-row, .feature-detailed-row.reverse {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .feature-text-content .feature-icon {
        margin: 0 auto 1rem auto;
    }
}

.content-block {
    background: #06b6d4 !important;
    color: white !important;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.content-block * {
    color: white !important;
}

/* Secção Fundida (Impacto + CTA Claro) */
.impact-merged-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #0891b2 0%, #14b8a6 100%);
    position: relative;
}
.cta-light-card {
    padding: 3.5rem 0;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}
.cta-light-title {
    font-size: 2rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 1rem;
}
.cta-light-description {
    font-size: 1.375rem;
    color: #475569;
    margin-bottom: 2rem;
}
.cta-light-requirements {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 1rem;
}


/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00ffff;
    color: black;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 70%;
}

.cookie-content p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Botões de Cookies */
.btn-cookie-accept {
    background-color: #00ff00; /* Cor ciano/verde pedida */
    color: #0f172a;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-cookie-reject {
    background: transparent;
    color: black;
    border: 1px solid black;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.btn-cookie-accept:hover, .btn-cookie-reject:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .cookie-content {
        max-width: 100%;
        flex-direction: column;
    }
}

/* --- VISIBILIDADE DOS SELETORES DE IDIOMA --- */

/* Em ecrãs MÓVEIS (até 768px) */
@media (max-width: 768px) {
    .lang-selector.nav-desktop {
        display: none !important; /* Esconde o seletor de PC no telemóvel */
    }
}

/* Em ecrãs de COMPUTADOR (maiores que 768px) */
@media (min-width: 769px) {
    .nav-mobile {
        display: none !important; /* Esconde o menu mobile no PC */
    }

    .feature-image {
        justify-content: center !important;
        margin-top: 1rem;
    }
}

/* Remove qualquer margem ou imagem de fundo do bloco de jornada */
#jornada-verde {
    background-image: none !important; /* Remove imagens de fundo [cite: 576] */
    background-color: transparent !important; 
    margin: 0 !important;
    padding: 4rem 0 !important;
    display: block !important;
}

#the-project{
    background: #cb26c8;
    color: white;
}

#the-social-network{
    background: #1dcaff;
    color: black;
}

#the-environment{
    background: #00ffff;
    color: black;
}

#the-savings{
    background: #00ff00;
    color: black;
}

#the-reward{
    background: #ffff00;
    color: black;
}

#the-calories{
    background: #ffa500;
    color: black;
}

#the-privacy{
    background: #ff0000;
    color: white;
}   

#the-download{
    background: #d3d3d3;
    color: black;
}

#the-statistics{
    background: #ffffff;
    color: black; 
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

/* Força a imagem a ficar debaixo do texto nas Estatísticas */
#the-statistics .feature-flex-container {
    flex-direction: column;
}

/* Aumenta o tamanho do contador (link/imagem) nas Estatísticas */
#the-statistics .feature-image img {
    max-width: 900px; /* Aumenta o limite de largura apenas para esta imagem */
}

/* Garante que o conteúdo interno não limite a cor de fundo nas laterais */
#jornada-verde .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 1.5rem;
}

/* Tamanho das letras reduzido conforme pedido [cite: 575] */
#jornada-verde h2 {
    font-size: 2rem !important;
    margin-top: 0;
}

#jornada-verde p {
    font-size: 1.125rem !important; /* Letras menores que o padrão de 1.25rem */
}

/* Estilos do Backoffice / Admin Form */
.admin-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.admin-form label {
    display: block;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.admin-form input, .admin-form textarea, .admin-form select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white !important;
    font-family: inherit;
    font-size: 1rem;
}
.admin-form input::placeholder, .admin-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus {
    outline: none;
    border-color: #06b6d4;
    background: rgba(255,255,255,0.15);
}
.admin-form option {
    color: black !important;
}