 :root {

    --primary-blue: rgb(9, 8, 80);
    --accent-orange: #e33e08;
    --bg-light: #F8FAFC;
    --text-main: #334155;
    --text-title: #1a2b4b;

}

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



body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}



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

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--bg-light);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0; /* Reduzi um pouco para ficar mais elegante */
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Ou a largura do seu container */
    margin: 0 auto;
    padding: 0 20px;

}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    margin-left: 25px; /* Espaçamento entre links */
    font-size: 0.95rem;
    transition: 0.3s;

}


nav a:hover {
    opacity: 0.7;
}



/* Language Switcher ajustado para alinhar com os links */
.language-switcher {
    display: flex;
    gap: 2px;
    margin-left: 30px; /* Espaço maior separando do último link */
    background: rgba(0,0,0,0.05);
    padding: 3px;
    border-radius: 8px;
    align-items: center;
}



.language-switcher button {
    background: none;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s;
    color: #666;
    line-height: 1; /* Garante alinhamento do texto interno */

}



.language-switcher button.active {

    background: #fff;

    color: #007bff;

    box-shadow: 0 2px 4px rgba(0,0,0,0.1);

}

/* --- Header & Nav Ajustados --- */
.menu-toggle {
    display: none; /* Escondido por padrão (Desktop) */
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: block; /* Aparece apenas em tablets e celulares */
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; /* Ocupa a tela toda para melhor experiência */
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav a {
        margin: 0;
        font-size: 1.5rem;
    }

    .language-switcher {
        margin: 10px 0 0 0;
        scale: 1.2;
    }
}

.hero-slider {

    position: relative;

    overflow: hidden;

    height: 80vh;

    background-image: linear-gradient(rgb(9, 8, 80, 1) 0%, rgba(9, 8, 80, 0.618) 100%), url('images/hero-background.jpg');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

}



.slider-container { width: 100%; height: 100%; }



.slide {

    position: absolute;

    width: 100%;

    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.8s ease-in-out, visibility 0.8s;

    display: flex;

    align-items: center;

}

.hero-logo{
    width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.slide.active {

    opacity: 1;

    visibility: visible;

}



/* Botões de Navegação */

.slider-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.5);

    border: none;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    cursor: pointer;

    z-index: 10;

    transition: 0.3s;

}



.slider-btn:hover { background: #2dd4bf; color: white; }

.prev { left: 20px; }

.next { right: 20px; }





.slider-dots {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

}



.dot {

    width: 12px;

    height: 12px;

    background: rgba(0, 0, 0, 0.2);

    border-radius: 50%;

    cursor: pointer;

}



.dot.active { background: #2dd4bf; width: 30px; border-radius: 10px; }



.hero-content {

    display: block;

    justify-content: center;

    align-items: center;

    gap: 40px;

}



.hero-text h2 {

    font-size: 3.8rem;

    text-align: center;

    color: white;

    line-height: 1.1;

    margin: 20px 0;

}



.hero-text p {

    text-align: center;

    color:white;

    font-size: 1.2rem;

    display: flex;

    flex-direction: column;

    align-items: center;

}



.hero-btns {

    display: flex;

    gap: 15px;

    justify-content: center;

    align-items: center;

    margin-top: 20px;

}



.btn-main {

    background: var(--accent-orange);

    color: white;

    padding: 12px 28px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: 0.3s;

}



.btn-main:hover {

    background: var(--accent-orange);

}



.badge-tech {

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.3);

    padding: 5px 15px;

    display: inline-flex;

    border-radius: 20px;

    font-size: 0.8rem;

    margin-bottom: 20px;

    align-items: center;

    gap: 8px;

    color: white;

}



.badge-tech i {

    color: var(--accent-orange);

    font-size: 8px;

}

.news-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-title);
}

.news-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 10px;
}

.badge-news {
    background: rgba(0, 116, 188, 0.1);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.news-image {
    position: relative;
    height: 200px;
}

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

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-body {
    padding: 25px;
}

.news-body h3 {
    font-size: 1.25rem;
    color: var(--text-title);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-body p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-link:hover {
    text-decoration: underline;
}



.results-container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 12px 0 100px;

}



.results-container h2 {

    text-align: center;

    font-size: 2.5rem;

    color: var(--text-title);

}



.results-container p {

    text-align: center;

    font-size: 1.2rem;

    color: #64748b;

    margin-top: 10px;

}



.download-area {

    text-align: center;

    margin: 20px 0 40px 0;

}



.btn-download {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--accent-orange);

    color: white;

    padding: 12px 25px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;

    border: 2px solid transparent;

}



.btn-download:hover {

    background-color: white;

    color: var(--accent-orange);

    border-color:var(--accent-orange);

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);

}



.btn-download i {

    font-size: 1.2rem;

}



.results-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 50px;

}



.result-card {

    background: rgba(255, 255, 255, 0.7);

    border: 1px solid white;

    padding: 40px;

    border-radius: 24px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.03);

    text-align: left;

    transition: transform 0.3s;

}



.result-card:hover {

    transform: translateY(-10px);

}





.result-card h3 {

    font-size: 2.5rem;

    color: var(--primary-blue);

    margin-bottom: 10px;

}





@media (max-width: 968px) {

    .hero-content, .results-grid { grid-template-columns: 1fr; }

    .hero-text h1 { font-size: 2.5rem; }

}



.tech-convergence {

    padding: 80px 0;

    background: linear-gradient(135deg, var(--primary-blue) 0%, #003d80 100%);

    color: white;

    text-align: center;

}



.tech-header h2 {

    font-size: 2.8rem;

    font-weight: 800;

    margin-bottom: 10px;

}



.tech-header p {

    font-size: 1.1rem;

    opacity: 0.8;

    margin-bottom: 50px;

}



/* Grid de pílulas */

.tech-grid {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 20px;

    max-width: 1100px;

    margin: 0 auto;

}



.tech-pill {

    display: flex;

    align-items: center;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.2);

    padding: 10px 25px 10px 10px; /* Mais espaço na direita para o texto */

    border-radius: 50px;

    transition: all 0.3s ease;

    cursor: default;

}



.tech-pill:hover {

    background: rgba(255, 255, 255, 0.2);

    transform: translateY(-3px);

}



.tech-icon {

    width: 40px;

    height: 40px;

    background: var(--accent-orange);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 15px;

    font-size: 16px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}



.tech-pill span {

    font-weight: 600;

    font-size: 1rem;

    white-space: nowrap;

}



/* Responsividade */

@media (max-width: 768px) {

    .tech-header h2 { font-size: 2rem; }

    .tech-grid { gap: 10px; }

    .tech-pill { padding: 8px 15px 8px 8px; }

    .tech-pill span { font-size: 0.9rem; }

}



.testimonials {
    padding: 100px 0;
    background-color: #f8fafc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-title);
}

.testimonials p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 10px;
}

.t-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.t-card:hover {
    transform: translateY(-10px);
}
.t-card:hover .quote-icon {
    opacity: 0.8;
}

.quote-icon {
    margin-bottom: 20px;
    opacity: 0.5;
}

.t-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 30px;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.color-1 { background:var(--accent-orange); }
.color-2 { background:var(--accent-orange); }
.color-3 { background:var(--accent-orange); }

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info strong {
    color: #102143;
    font-size: 1.05rem;
}

.user-info span {
    font-size: 0.9rem;
    color: #64748b;
}

.user-info small {
    font-size: 0.85rem;
    color: #00CBA9;
    font-weight: 600;
}

@media (max-width: 968px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}



.f-card {

    background: rgba(255, 255, 255, 0.7);

    border: 1px solid white;

    padding: 40px;

    border-radius: 24px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.03);

    text-align: left;

    transition: transform 0.3s;

}



.f-card:hover {

    transform: translateY(-10px);

}



.f-icon {

    font-size: 2rem;

    color: var(--primary-blue);

    background: #f8fafc;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    margin-bottom: 20px;

}



.features-footer {

    margin-top: 50px;

}



.btn-outline {

    align-items: center;

    justify-content: center;

    padding: 12px 30px;

    background-color: var(--accent-orange);

    color: white;

    border-radius: 8px;

    font-weight: 600;

    font-size: 0.9rem;

}



/* Responsividade */

@media (max-width: 1024px) {

    .features-grid { grid-template-columns: repeat(2, 1fr); }

}



@media (max-width: 600px) {

    .features-grid { grid-template-columns: 1fr; }

}



.awards-section {

    padding: 80px 0;

    background-color: #fff;

    font-family: 'Plus Jakarta Sans', sans-serif;

}



.awards-header {

    text-align: center;

    margin-bottom: 60px;

}



.awards-icon-main {

    background: var(--accent-orange);

    color: white;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    font-size: 24px;

    box-shadow: 0 4px 15px rgba(179, 38, 74, 0.3);

}



.awards-header h2 {

    font-size: 2.5rem;

    color: #1a2b4b;

    font-weight: 800;

    margin-bottom: 10px;

}



.awards-header p {

    font-size: 1.2rem;

    color: #64748b;

    margin-bottom: 50px;}



/* Timeline Container */

.timeline {

    position: relative;

    max-width: 1000px;

    margin: 0 auto;

}



/* A linha central */

.timeline::after {

    content: '';

    position: absolute;

    width: 2px;

    background-color: #e9ecef;

    top: 0;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

}



.timeline-item {

    padding: 10px 40px;

    position: relative;

    width: 50%;

    display: flex;

    align-items: center;

    box-sizing: border-box;

}



/* Dots (Círculos azuis) */

.timeline-dot {

    position: absolute;

    width: 45px;

    height: 45px;

    background-color: #0056b3;

    border: 4px solid #fff;

    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    z-index: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 14px;

}



/* Lado Esquerdo */

.timeline-item.left {

    left: 0;

    flex-direction: row-reverse;

}



.timeline-item.left .timeline-dot {

    right: -22.5px;

}



.timeline-item.left .timeline-date {

    margin-left: 20px;

}



/* Lado Direito */

.timeline-item.right {

    left: 50%;

}



.timeline-item.right .timeline-dot {

    left: -22.5px;

}



.timeline-item.right .timeline-date {

    margin-right: 20px;

}



/* Conteúdo (Caixas cinzas) */

.timeline-content {

    padding: 20px 30px;

    background-color: #f8f9fa;

    border: 1px solid #e9ecef;

    border-radius: 12px;

    width: 100%;

    box-shadow: 0 4px 10px rgba(0,0,0,0.02);

}



.timeline-content p {

    margin: 0;

    font-weight: 600;

    color: #343a40;

}



/* Datas (Badge azul claro) */

.timeline-date {

    background-color: #e7f1ff;

    color: #007bff;

    padding: 8px 20px;

    border-radius: 8px;

    font-weight: 800;

    font-size: 1.1rem;

    min-width: 80px;

    text-align: center;

}

/*FORMUALÁRIO DE CONTATO*/

.contact-section {
    padding: 100px 0;
    background: var(--primary-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(0, 116, 188, 0.15);
    filter: blur(80px);
    border-radius: 50%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info-box h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0;
    color: white;
}

.contact-info-box p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #e2e8f0;
}

.c-feat i { color: var(--accent-orange); }

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #f8fafc;
}


.btn-submit-glow {
    width: 100%;
    padding: 16px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.btn-submit-glow:hover {
    background-color: white;
    color: var(--accent-orange);
    border-color:var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Responsividade */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .contact-info-box h2 { font-size: 2.2rem; }
    .contact-features { align-items: center; }
}

/* ==========================================================================
   FOOTER CORRIGIDO
   ========================================================================== */
.main-footer {
    background-color: #ffffff;
    padding: 60px 0 30px;
    border-top: 1px solid #f1f5f9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    align-items: start;
}

/* BRAND */
.footer-logo {
    width: 200px; /* Ajuste para harmonia visual */
    height: auto;
    margin-bottom: 20px;
    display: block;
}

/* TITULOS */
.footer-links h4,
.footer-contact h4 {
    color: var(--text-title);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: block;
}

/* Traço decorativo abaixo dos títulos */
.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* LINKS E LISTAS (Removendo o desalinhamento de listas) */
.footer-links ul {
    list-style: none;
    padding: 0; /* Remove o recuo padrão do navegador */
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* CONTATO */
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-blue);
    width: 20px; /* Largura fixa para alinhar os textos à direita dos ícones */
}

/* BOTTOM BAR */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* --- Ajustes Gerais de Responsividade --- */

@media (max-width: 1024px) {
    .hero-text h2 { font-size: 2.8rem; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Seções e Containers */
    section { padding: 60px 0 !important; }

    /* Hero / Slider */
    .hero-slider { height: auto; min-height: 90vh; padding-top: 80px; }
    .hero-text h2 { font-size: 2.2rem; padding: 0 10px; }
    .hero-logo { width: 220px; }
    .hero-btns { flex-direction: column; padding: 0 20px; }
    .btn-main { width: 100%; justify-content: center; }

    /* Resultados e Notícias (Cards) */
    .results-grid, .news-grid, .testimonial-grid {
        grid-template-columns: 1fr; /* Empilha tudo em uma coluna */
        gap: 20px;
    }

    .result-card, .news-card {
        padding: 25px;
    }

    /* Linha do Tempo (Prêmios) - Estilo Lista Vertical */
    .timeline::after { left: 20px; }
    .timeline-item {
        width: 100%;
        padding-left: 55px;
        padding-right: 0;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .timeline-item.left, .timeline-item.right { left: 0; }
    .timeline-dot { left: -3px !important; top: 20px; transform: none; }
    .timeline-date { margin: 0 0 10px 0 !important; font-size: 0.9rem; }

    /* Contact & Footer */
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-info-box h2 { font-size: 2rem; }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo { margin: 0 auto 20px; }
}

@media (max-width: 480px) {
    .hero-text h2 { font-size: 1.8rem; }
    .tech-pill { width: 100%; justify-content: flex-start; }
    .tech-header h2 { font-size: 1.8rem; }
}
