/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Alyssum', sans-serif;
    color: #056839;
    background-color: #ffffff;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header e Navbar */
  .header {
    background-color: #056839;
    color: #ffffff;
    padding: 0.8rem 0; /* Altura menor para visual mais elegante */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar {
    display: flex;
    align-items: center;
  }
  
  .nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500; /* Negrito leve para destaque */
    padding: 0.5rem 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
  }
  
  .nav-list a:hover {
    color: #9bcc50;
    border-bottom: 2px solid #9bcc50; /* Destaque ao passar o mouse */
  }
  
  /* Botão específico para Quero Ser 1000 */
  .nav-list .btn-quero-ser-1000 {
    background-color: #9bcc50;
    color: #ffffff;
    border: 2px solid #056839;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(155, 204, 80, 0.3); /* Sombra discreta */
  }
  
  .nav-list .btn-quero-ser-1000:hover {
    background-color: #7cb33f;
    box-shadow: 0 4px 10px rgba(155, 204, 80, 0.5); /* Brilho e sombra mais intensos */
  }
  
  /* Botão Hambúrguer */
  .hamburger {
    display: none; /* Mostra apenas no mobile */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1500;
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  /* Animações do botão hambúrguer */
  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-list {  
      display: none;
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
      background-color: #056839;
      position: fixed;
      top: 4rem; /* Alinha o menu com a navbar fixa */
      left: 0;
      width: 100%;
      padding: 1rem 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra no menu dropdown */
    }
  
    .navbar.active .nav-list {
      display: flex;
    }
  
    .nav-list a {
      font-size: 1.2rem;
      color: #ffffff;
    }
  
    .nav-list .btn-quero-ser-1000 {
      padding: 0.8rem 1.5rem;
      font-size: 1.2rem;
    }
  }
  /* Linha Animada com Loop */
.animated-line {
    width: 100%; /* Linha já visível inicialmente */
    height: 4px; /* Altura da linha */
    background-color: #9bcc50; /* Verde claro */
    position: absolute;
    bottom: -4px; /* Posiciona abaixo da navbar */
    left: 0;
    animation: linePulse 3s ease-in-out infinite; /* Loop contínuo */
    transform-origin: center; /* Expande e reduz do centro */
  }
  
  /* Animação de "respiração" */
  @keyframes linePulse {
    0%, 100% {
      transform: scaleX(1); /* Tamanho normal */
    }
    50% {
      transform: scaleX(0.8); /* Linha reduz em largura */
    }
  }
  
  
  /* Hero Section */
/* Hero Section - Ajustes gerais */
.hero-section {
    text-align: center;
    padding: 12rem 1rem;
    background: linear-gradient(
        to bottom,
        rgba(155, 204, 80, 0.8),
        rgba(5, 104, 57, 0.8)
      ),
      url('images/redacao-banner.jpg') center center / cover no-repeat fixed;
    color: #ffffff;
    position: relative;
  }
  
  /* Container da Hero */
  .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  /* Textos do carrossel */
  .hero-text {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .carousel-item {
    display: none; /* Esconde todos os itens inicialmente */
  }
  
  .carousel-item h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .carousel-item p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .carousel-item.active {
    display: block; /* Exibe o item ativo */
  }
  
  /* Imagem da Hero */
  .hero-image {
    flex: 1;
    text-align: center;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Botão Aprender Mais */
  .hero-text .btn-aprender-mais {
    background-color: #9bcc50;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(155, 204, 80, 0.4);
  }
  
  .hero-text .btn-aprender-mais:hover {
    background-color: #7cb33f;
    box-shadow: 0 6px 20px rgba(155, 204, 80, 0.6);
    transform: scale(1.05);
  }
  
  .hero-text .btn-aprender-mais::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: linear-gradient(
      90deg,
      rgba(155, 204, 80, 0.5),
      rgba(255, 255, 255, 0.5),
      rgba(155, 204, 80, 0.5)
    );
    z-index: -1;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .hero-text .btn-aprender-mais:hover::before {
    opacity: 1;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .hero-section {
      padding: 8rem 1rem;
    }
  
    .hero-content {
      flex-direction: column; /* Alinha os elementos verticalmente */
    }
  
    .hero-text {
      max-width: 100%;
    }
  
    .carousel-item h2 {
      font-size: 2rem;
    }
  
    .carousel-item p {
      font-size: 1rem;
    }
  
    .hero-image img {
      max-width: 80%;
    }
  
    .btn-aprender-mais {
      margin-top: 1.5rem; /* Ajusta o espaçamento no mobile */
    }
  }
  
  
  
  
 /* Seção Nosso Material */
.nosso-material {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
  }
  
  .nosso-material h3 {
    text-align: center;
    font-size: 2rem;
    color: #056839;
    margin-bottom: 2rem;
  }
  
  .nosso-material .content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .nosso-material .text {
    flex: 1;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
  }
  
  .nosso-material .text p {
    margin-bottom: 1.5rem;
  }
  
  .nosso-material .text strong {
    color: #056839;
    font-weight: bold;
  }
  
  .nosso-material .btn-ver-material {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #056839;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .nosso-material .btn-ver-material:hover {
    background-color: #9bcc50;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .nosso-material .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .nosso-material .image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsividade */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .nosso-material .content {
      flex-direction: column;
    }
  
    .nosso-material .text {
      text-align: center;
    }
  
    .nosso-material .btn-ver-material {
      margin: 1rem auto 0;
    }
  
    .nosso-material .image {
      margin-top: 2rem;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .nosso-material {
      padding: 2rem 1rem;
    }
  
    .nosso-material h3 {
      font-size: 1.8rem;
    }
  
    .nosso-material .text {
      font-size: 1rem;
      line-height: 1.5;
    }
  
    .nosso-material .image img {
      max-width: 90%;
    }
  
    .nosso-material .btn-ver-material {
      padding: 0.7rem 1.2rem;
      font-size: 1rem;
    }
  }
  
  /* Pequenos dispositivos (Ex.: iPhone SE) */
  @media (max-width: 480px) {
    .nosso-material h3 {
      font-size: 1.5rem;
    }
  
    .nosso-material .text {
      font-size: 0.9rem;
    }
  
    .nosso-material .btn-ver-material {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }
  }
  
  
  /* Seção Excelência */
  .excelencia {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
  }
  
  .excelencia h3 {
    font-size: 2rem;
    color: #056839;
    margin-bottom: 1.5rem;
  }
  
  .excelencia p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  .excelencia .btn-ver-material {
    padding: 0.8rem 1.5rem;
    background-color: #056839;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .excelencia .btn-ver-material:hover {
    background-color: #9bcc50;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Seção Material 2025 */
  .material2025 {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #056839, #9bcc50);
    color: #ffffff;
    text-align: center;
  }
  
  .material2025 h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .material2025 p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .material2025 .btn-ver-material-impact {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #056839;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .material2025 .btn-ver-material-impact:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  
  
  /* Mais Temas */
  .mais-temas {
    padding: 4rem 0;
    background-color: #f9f9f9;
  }
  
  .mais-temas h3 {
    text-align: center;
    font-size: 2rem;
    color: #056839;
    margin-bottom: 2rem;
  }
  
  /* Campo de Busca */
  .search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  #search-input {
    width: 100%;
    max-width: 500px;
    padding: 0.8rem 1rem;
    border: 2px solid #056839;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.3s ease;
  }
  
  #search-input:focus {
    box-shadow: 0 0 10px rgba(5, 104, 57, 0.5);
  }
  
  /* Grid de Temas */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .grid-card {
    text-decoration: none;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .grid-card h4 {
    color: #056839;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  

  /* Footer */
.footer {
    background-color: #056839;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  
  .footer-links a:hover {
    color: #9bcc50;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .nav-list {
      flex-direction: column;
      align-items: center;
    }
  
    .hero-buttons {
      flex-direction: column;
    }
  }
  /* Footer */
.footer {
    background-color: #056839; /* Fundo verde escuro */
    color: #ffffff; /* Texto branco */
    padding: 3rem 1rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Layout responsivo */
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #9bcc50; /* Destaque do título */
  }
  
  .footer-section p,
  .footer-section ul {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #9bcc50; /* Destaque no hover */
  }
  
  .footer-section iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #ffffff;
    padding-top: 1rem;
  }
  
  .footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #9bcc50; /* Destaque no hover */
  }
/***** Seção Como Usar *****/
.como-usar {
    background-color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .como-usar h2 {
    font-size: 2.5rem;
    color: #056839;
    margin-bottom: 2rem;
  }
  
  .como-usar-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .como-usar-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
  }
  
  .como-usar-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  
  .como-usar-text ul {
    list-style-type: disc;
    margin-left: 1.5rem;
  }
  
  .como-usar-text ul li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .como-usar-text ul li strong {
    color: #056839;
  }
  
  .como-usar-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .como-usar-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Botão CTA */
  .como-usar-cta {
    margin-top: 3rem;
  }
  
  .como-usar-cta p {
    font-size: 1.3rem;
    color: #056839;
    margin-bottom: 1rem;
  }
  
  .btn-acessar-material {
    background-color: #9bcc50;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .btn-acessar-material:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .como-usar-content {
      flex-direction: column;
    }
  
    .como-usar-text {
      text-align: center;
      max-width: 100%;
    }
  
    .como-usar-image img {
      max-width: 80%;
    }
  
    .btn-acessar-material {
      width: 80%;
      max-width: 300px;
    }
  }
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-image {
    max-width: 180px; /* Dimensão ideal para o desktop */
    height: auto; /* Preserva a proporção da imagem */
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .logo-image {
      max-width: 150px; /* Reduz o tamanho em dispositivos menores */
    }
  }
  
  @media (max-width: 480px) {
    .logo-image {
      max-width: 120px; /* Reduz ainda mais para telas pequenas */
    }
  }
  /* Botão de Scroll Up */
.scroll-up-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #056839;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: none; /* Inicialmente escondido */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1500;
  }
  
  .scroll-up-btn:hover {
    background-color: #9bcc50;
    transform: scale(1.1);
  }
  
  /* Responsividade - Botão visível apenas em dispositivos móveis */
  @media (max-width: 768px) {
    .scroll-up-btn {
      display: flex;
    }
  }
  