
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
 }
    
    
    
 body, html {
    
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #E7E7E7;
    scroll-behavior: smooth;
    
    }
    
    
    
    /* ========== Seção Hero ========== */

    .menu-toggle {
        display: none;
      }
    
    .hero {
        background-image: url('./ASSETS/BACKGROUND.png');
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        height: 100vh;
        position: relative;
        color: white;
    }
    
    
    
    @media (max-width: 768px)
{
    .hero {
        background-attachment: scroll;
    }
    
}
    
    
    
    .top-bar {
    
        position: absolute;
        top: 0;
        width: 100%;
        padding: 20px 40px;
        display: flex;
        align-items: center;
        z-index: 10;
    
    }
    
    
    
    .header-left,
    .header-right {
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    
    
    .header-right {
        justify-content: flex-end;
    }
    
    
    
    .menu {
        flex: 2;
        display: flex;
        font-weight: 900;
        justify-content: center;
        gap: 30px;
    }
    
    
    .logo {
        height: 70px;
    }
    
    
    
    .menu a {
    
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    
    }
    
    
    
    .menu a:hover {
        opacity: 0.7;
    }
    
    
    
    .cta {
    
    background-color: white;
    color: #2B4AA3;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    
    }
    
    
    
    .cta:hover {
    
        background-color: #f0f0f0;
    
    }
    
    
    
    .hero-content {
    
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    
    }
    
    
    
    .main-image {
        max-width: 80%;
        height: auto;
        margin-left: -5%;
    }
    
    
    
    .scroll-indicator {
    
        position: absolute;
        bottom: 20px;
        left: 50%;
    
        transform: translateX(-50%);
        animation: bounce 2s infinite;
        z-index: 10;
    
    }
    
    
    
    .scroll-indicator img {
    
        width: 30px;
        height: auto;
        filter: brightness(0) invert(1);
    
    }
    
    
    
    @keyframes bounce {
    
    0%, 100% {
    
    transform: translateX(-50%) translateY(0);
    
    }
    
    50% {
    
    transform: translateX(-50%) translateY(10px);
    
    }
    
    }
    
    
    
    /* ========== Seção faixa com texto rolante ========== */
    
    .scrolling-banner {
    
    background-color: #1777C4;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    
    }
    
    
    .scrolling-text {
    
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    
    }
    
    
    
    .scrolling-text span {
    
    margin-right: 40px;
    
    }
    
    
    
    @keyframes scroll-left {
    
    0% {
    
    transform: translateX(0);
    
    }
    
    100% {
    
    transform: translateX(-50%);
    
    }
    
    }
    
    
    
    /* ========== Seção SOBRE O TEMA ========== */
    
    .about-theme {
    
    position: relative;
    background-color: #E7E7E7;
    padding: 60px 20px;
    color: #4F4F4F;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    
    }
    
    
    
    .about-theme::before {
    
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background-image: url('./ASSETS/simbolo-tema.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
    z-index: 0;
    
    }
    
    
    
    .about-content {
    
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: 50%;
    padding-left: 60px;
    
    }
    
    
    
    .about-text h2 {
    
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000;
    
    }
    
    
    
    .about-text p {
    
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.6;
    
    }
    
    
    
    .btn-download {
    
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background-color: #593EB7;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
    
    }
    
    
    
    .btn-download:hover {
    
    background-color: #472f9c;
    
    }
    
    
    
    /* ========== Seção VISÃO ========== */
    
    .vision {
    
    background-color: #1777C4;
    color: white;
    padding: 80px 0 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    }
    
    
    
    .vision-content {
    
    max-width: 1200px;
    padding: 0 40px 0 200px;
    margin-bottom: 40px;
    
    }
    
    
    
    .vision-banner {
    
    width: 100%;
    height: auto;
    display: block;
    
    }
    
    
    
    .vision-title {
    
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 0.8;
    
    }
    
    
    
    .flip-text {
    
    height: 4.5rem;
    overflow: hidden;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    
    }
    
    
    
    .flip-text span {
    
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    animation: flipLoop 9s infinite;
    
    }
    
    
    
    .flip-text span:nth-child(1) { animation-delay: 0s; }
    .flip-text span:nth-child(2) { animation-delay: 3s; }
    .flip-text span:nth-child(3) { animation-delay: 6s; }
    
    
    
    @keyframes flipLoop {
    
    0% { opacity: 0; transform: translateY(100%); }
    10%, 30% { opacity: 1; transform: translateY(0); }
    40%, 100% { opacity: 0; transform: translateY(-100%); }
    
    }
    
    
    
    .vision-subtext {
    
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    max-width: 500px;
    line-height: 1.5;
    
    }
    
    
    
    .vision-image img {
    
    display: block;
    width: 100%;
    height: auto;
    margin-top: 40px;
    
    }
    
    
    
    /* === SEÇÃO 5: BAIXE OS MATERIAIS (REGRAS CORRIGIDAS) === */
    
    .secao-materiais {
    
    background-color: #E7E7E7;
    padding: 80px 40px;
    
    }
    
    
    
    .materiais-container {
    
    max-width: 1200px;
    margin: 0 auto;
    
    }
    
    
    
    .materiais-titulo {
    
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #653D9D;
    text-align: center;
    margin-bottom: 10px;
    
    }
    
    
    
    .materiais-subtitulo {
    
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.15rem;
    color: #653D9D;
    text-align: center;
    margin-bottom: 50px;
    
    }

    
    .materiais-cards {
    
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    
    }
    
    
    
    .card-grande {
        flex: 2 1 500px;
    
    }
    
    
    
    .grupo-cards-direita {
    
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    
    }
    
    
    
    .card-materia {
    
    background-color: #F5F5F5;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    }
    
    
    .card-materia img {
    
    width: 100%;
    height: auto;
    display: block;
    
    }
    
    
    .conteudo-card {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #333;
    color: white;
    flex-grow: 1;
    
    }
    
    
    
    .titulo-card {
    
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    
    }
    
    
    .descricao-card {
    
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #cccccc;
    margin: 0;
    
    }
    
    
    
    .botao-download img {
    
    width: 24px;
    height: 24px;
    filter: invert(1);
    transition: transform 0.2s ease;
    
    }
    
    
    
    .botao-download:hover img {
    
    transform: scale(1.1); 
    
    }
    
    
    
    .simple-image-section {
    
    background-color: #00207D;
    padding: 80px 0;
    text-align: center;
    
    }
    
    
    
    .centered-image {
    
    display: inline-block;
    max-width: 15%;
    height: min-content;
    margin-top: 20px;
    
    }
    
    
    
    /* ========== RESPONSIVIDADE ========== */
    
    @media (max-width: 900px) {
    
    .about-theme::before {
    width: 100%;
    height: 200px;
    
    }
    
    .about-content {
    
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
    
    }
    
    .about-theme {
    
    flex-direction: column;
    
    }
    
    .vision-content {
    
    padding-left: 40px;
    
    }
    
    .vision-title {
    
    font-size: 4rem;
    
    }
    
    .materiais-cards {
    
    flex-direction: column;
    
    }
    
    }
    
    
    
    @media (max-width: 768px) {
    
    .top-bar {
    
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    
    }
    
    .menu {
    
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;

    }
    
    .main-image {
    
    max-width: 100%;
    margin-left: 0;
    
    }
    
    .header-left, .header-right {
    
    justify-content: center;
    width: 100%;
    
    }
    
    .vision-content {
    
    padding-left: 20px;
    
    }
    
    .vision-title {
    
    font-size: 3rem;
    
    }
    
    .flip-text {
    
    font-size: 1.8rem;
    
    }


    .menu {
  flex: 2;
  display: flex;
  font-weight: 900;
  justify-content: center;
  gap: 30px;
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* --- Ajustes para mobile --- */

@media (max-width: 768px) {

  .top-bar {
    padding: 15px 20px;
  }

  .menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    z-index: 20;
  }

  .menu a {
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .menu-toggle {
    display: block;
    flex: 0;
  }

  .header-right {
    flex: 0;
  }

  .menu.active {
    display: flex;
  }

  .centered-image {
    max-width: 50%;
  }
}
    
    }
