:root {
    --primary-blue: #275aa9;
    --light-blue: #5ab2e0;
    --cream: #efd78d;
    --orange: #f9b749;
    --off-white: #f7f1e1;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #666666;
	--superlight-blue: #d4eef8;
	--superlight-gray: #efefef;
	--dark-blue: #012661;
	--cyan: #43fffe;
	--black: #000000;
	--dark-glass: #50505070;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0e1a;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

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

#networkCanvas {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a2040 0%, #0a0e1a 70%);
}
 /* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.network-background video {
	height: auto;
	width: 125%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    gap: 60px;
    padding: 40px 0;
	position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
	margin-top: 25px;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    text-align: center;
    margin-bottom: 30px;
    display: grid;
	grid-template-columns: 2fr 2fr 1fr;
	gap: 15px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.highlight-white {
    color: white;
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #ffffff;
}
#animated-text {
	line-height: 2.75rem;
	text-transform: uppercase;
	font-size: 3.75rem;
	color: var(--dark-blue);
	zoom: 0.8;
}
#animated-text .space {
	margin: 0 2px;
}
#animated-text em {
	font-style: normal;
	font-weight: 400 !important;
	color: var(--cyan);
	font-size: 2.33rem;
	margin: 0 10px;
}
#animated-text span {
  opacity: 0;
  color: #ffffff;
  font-weight: 900;
  transition: opacity 0.3s ease-in-out;
  display: inline-block;
}
#animated-text .color-a {
  color: #ffffff;
}

#animated-text .color-b {
  color: #cccccc !important;
}
.year {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}
.logo {
    height: 50px;
    width: auto;
	filter: brightness(10);
	margin: 0px auto;
}

.question-box-vazio {
    width: 100%;
	max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.question-box {
    border: 2px solid #00d4ff;
    border-radius: 9px;
    padding: 12px 20px;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
	max-width: 520px;
    margin-left: auto;
    margin-right: auto;
	box-sizing: border-box;
	line-height: 1.5rem;
	transition: all 0.3s ease;
}

.question-box p {
    font-size: 1rem;
	font-weight: 600;
    color: #ffffff;
    text-align: center;
    min-height: 1.5em;
    display: flex;
	padding: 0 !important;
	margin: 0 !important;
    align-items: center;
    justify-content: center;
    white-space: wrap;
}

.cursor {
    color: #00d4ff;
    animation: blink 1s infinite;
    font-weight: normal;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.cta-text {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
    position: relative;
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.cta-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-main:hover {
    transform: scale(1.05);
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.8);
    color: #ffffff;
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-text:hover .cta-sub {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

/* Efeito de pulso sutil */
.cta-main::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
	background: radial-gradient(ellipse at center,  rgba(5,171,224,0.15) 0%,rgba(135,224,253,0) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-text:hover .cta-main::after {
    width: 120%;
    height: 300%;
}

.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0a0e1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.profiles-section {
    flex: 1;
    max-width: 600px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
	min-height: 235px;
}

.profile-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h3 {
    font-size: 1rem;
    color: #00d4ff;
    font-weight: 600;
    line-height: 1.3;
}

.test-button-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.btn-test {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-test:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.6);
}

/* Responsive Design */

@media (max-width: 480px) {
    #animated-text {
        font-size: 1.8rem;
        line-height: 2rem;
		margin-bottom: 10px !important;
    }
	#animated-text em {
		font-size: 1.33rem;
	}
	.profile-card h3 {
		font-size: 0.76rem;
	}
	.btn-test {
		padding: 12px 20px;
		font-size: 1rem;
	}
	.profile-card {
        min-height: 162px !important;
		padding: 12px 12px !important;
		min-width: 145px;
    }
	.profile-image {
		margin: 0 auto 10px;
	}
	.question-box {
		margin-bottom: 10px !important;
	}
	.hero-section {
        gap: 10px !important;
		min-height: 98vh;
    }
	.cta-text {
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.main-title {
		margin-bottom: 20px;
	}
	.manifesto-container {
		padding: 0px !important;
		gap: 25px !important;
	}
	.manifesto-text p {
		font-size: 0.8rem !important;
	}
	.manifesto-text p.active {
		font-size: 0.85rem !important;
		padding: 10px !important;
		margin-bottom: 15px !important;
		font-weight: 600;
	}
	.manifesto-content {
		padding-left: 0px !important;
		height: 240px !important;
		overflow: auto !important;
		scroll-behavior: smooth;
	}
}

@media (max-width: 1200px) {
	#animated-text {
		line-height: 2.5rem;
		text-transform: uppercase;
		font-size: 3.5rem;
		color: var(--dark-blue);
		zoom: 0.7;
	}
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
	.question-box {
		padding: 10px;
	}
    .question-box p {
		font-size: 0.8rem;
	}
    .main-title {
        font-size: 3rem;
    }
    #animated-text {
		font-size: 2.75rem;
	}
	#animated-text em {
		font-size: 2.25rem;
	}
    .subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .question-box {
        max-width: 366px;
        padding: 10px;
		width: 100%;
    }
    .hero-content {
		width: 100%;
	}
	.question-box {
		height: 73px;
	}
    .question-box p {
        white-space: normal;
        font-size: 0.76rem;
    }
    #animated-text {
		font-size: 2.1rem;
		line-height: 2rem;
	}
	#animated-text em {
		font-size: 1.5rem;
	}
    .main-title {
        font-size: 2.5rem;
        width: 96%;
		margin-top: 35px;
		grid-template-columns: 1fr !important;
    }
	.manifesto-video {
		width: 100%;
	}
    .logo {
		height: 40px;
		left: 0;
		top: 3%;
		
	}
    .subtitle {
        font-size: 1.5rem;
    }
    
    .profiles-grid {
        gap: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-main {
        font-size: 1.5rem;
    }
    
    .cta-sub {
        font-size: 1rem;
    }
}


/* Animações para os elementos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.profile-card {
    animation: fadeInUp 1s ease-out forwards;
}

.profile-card:nth-child(1) { animation-delay: 0.2s; }
.profile-card:nth-child(2) { animation-delay: 0.4s; }
.profile-card:nth-child(4) { animation-delay: 0.6s; }
.profile-card:nth-child(5) { animation-delay: 0.8s; }
.test-button-container { animation-delay: 1s; }

/* Manifesto Section */
.manifesto-section {
    padding: 100px 0;
    position: relative;
}


.manifesto-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.manifesto-video {
   /* position: sticky; */
    top: 100px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 65%; /* Increased height for larger video */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        0 0 40px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2);
}

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

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.play-button:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.video-placeholder:hover .play-button {
    transform: scale(1.15);
}

.manifesto-content {
    padding-left: 20px;
	height: 620px;
	overflow: hidden;
	position:relative;
}

.manifesto-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 40px;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    position: relative;
}

.manifesto-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #4a90e2);
    border-radius: 2px;
}

.video-subtitle {
    margin-top: 30px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.video-subtitle:hover::before {
    left: 100%;
}

.video-subtitle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.08);
}

.video-subtitle::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.manifesto-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
	transition: transform 1s ease-out;
	top: 0;
}

.manifesto-text p {
    margin: 10px 0;
    padding: 8px 0;
	font-size: 0.9rem;
    border-radius: 4px;
}
/*
.manifesto-text p:hover {
    background: rgba(0, 212, 255, 0.05);
    padding-left: 15px;
    transform: translateX(5px);
}*/

.manifesto-text p.active {
    color: #00d4ff;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid #00d4ff;
    border-radius: 8px;
	transition: background-color 0.5s ease;
}

.manifesto-text em {
    color: #00d4ff;
}

.manifesto-signature {
    margin-top: 50px;
    padding: 0;
    text-align: center;
}

.manifesto-signature p {
    margin: 0;
    font-size: 1.3rem;
    color: #00d4ff;
}

.signature-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	font-weight: 600;
	margin: 25px auto;
}

/* Scroll animations */

/*
.manifesto-text p:nth-child(1) { animation-delay: 0.1s; }
.manifesto-text p:nth-child(2) { animation-delay: 0.2s; }
.manifesto-text p:nth-child(3) { animation-delay: 0.3s; }
.manifesto-text p:nth-child(4) { animation-delay: 0.4s; }
.manifesto-text p:nth-child(5) { animation-delay: 0.5s; }
.manifesto-text p:nth-child(6) { animation-delay: 0.6s; }
.manifesto-text p:nth-child(7) { animation-delay: 0.7s; }
.manifesto-text p:nth-child(8) { animation-delay: 0.8s; }
.manifesto-text p:nth-child(9) { animation-delay: 0.9s; }
.manifesto-text p:nth-child(10) { animation-delay: 1.0s; }
.manifesto-text p:nth-child(11) { animation-delay: 1.1s; }
.manifesto-text p:nth-child(12) { animation-delay: 1.2s; }
.manifesto-text p:nth-child(13) { animation-delay: 1.3s; }
.manifesto-text p:nth-child(14) { animation-delay: 1.4s; }
.manifesto-text p:nth-child(15) { animation-delay: 1.5s; }
.manifesto-text p:nth-child(16) { animation-delay: 1.6s; }
.manifesto-text p:nth-child(17) { animation-delay: 1.7s; }
.manifesto-text p:nth-child(18) { animation-delay: 1.8s; }
*/

/* Responsive Design para Manifesto */

@media (max-width: 1024px) {
    .manifesto-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .manifesto-video {
        position: relative;
        top: auto;
        order: 2;
    }
    
    .manifesto-content {
        padding-left: 0;
        order: 1;
    }
    
    .manifesto-subtitle {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .video-subtitle {
        font-size: 1.5rem;
        margin-top: 25px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .manifesto-section {
        padding: 60px 0;
    }
    
    .manifesto-container {
        padding: 0 20px;
        gap: 35px;
		display: flex;
		align-items: center;
		flex-direction: column-reverse;
    }
    
    .manifesto-subtitle {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
        margin-top: 20px;
        padding: 12px;
        line-height: 1.3;
    }
    .profile-card {
		padding: 15px 15px;
		min-height: 200px;
	}
    .manifesto-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .manifesto-signature {
        margin-top: 40px;
        padding: 20px;
    }
    
    .manifesto-signature p {
        font-size: 1.1rem;
    }
    
    .signature-tagline {
        font-size: 0.9rem;
    }
}

/* Efeito de parallax suave para o manifesto */
@media (min-width: 1025px) {
    .manifesto-section {
        background-attachment: fixed;
    }
}

/* Melhorias de acessibilidade */
.manifesto-text p:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 4px;
}

.video-wrapper:focus-within {
    outline: 2px solid #00d4ff;
    outline-offset: 4px;
}


/* Animação de entrada suave para a seção */
.manifesto-section {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.arrowdown {
  left: calc(50% - 20px);
  transform: translateY(0%) rotate(45deg);
  opacity: 0;
}
.arrow-1 {
	width: 2em; height: 2em; background-color: transparent; z-index: 80; bottom: 25px; position: absolute; border-width: 0 0.25em 0.25em 0; border-style: solid; border-color: white; animation: scrolldown 1.2s ease-in-out infinite 0.15s;
}
.arrow-2 {
	width: 2em; height: 2em; background-color: transparent; z-index: 80; bottom: 40px; position: absolute; border-width: 0 0.25em 0.25em 0; border-style: solid; border-color: white; animation: scrolldown 1.2s ease-in-out infinite;
}
.arrows {
	margin: 5px auto;
}
@keyframes scrolldown {
            0%{
                transform: translateY(20%) rotate(45deg);
                opacity: 0.7;
            }
            50%{
                transform: translateY(0%) rotate(45deg);
                opacity: 0.2;
            }
            100%{
                transform: translateY(20%) rotate(45deg);
                opacity: 0.7;
            }
        }