  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  :root{
    --navy:#1B1464;
    --green:#009B6F;
    --yellow:#F7B000;
    --blue:#0071C0;
    --red:#F42525;
    --bg-cream:#FFF4DF;
    --card:#ffffff;
    --muted:#6c757d;
  }
  
  body {
      font-family: "League Spartan", sans-serif;
      font-optical-sizing: auto;
      overflow-x: hidden;
      background-color: var(--bg-cream);
  }

  .linha-multicor {
      width: 100%;
      margin: 0px;
      display: block;
  }
  
  /* Navbar */
  .navbar-custom {
      background-color: var(--navy);
      padding: 1.2rem 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .navbar-custom a {
      color: white !important;
      font-weight: 600;
      margin: 0 1.5rem;
      transition: all 0.3s ease;
      position: relative;
      padding-bottom: 0;
  }
  
  .navbar-custom a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--yellow);
      transition: width 0.3s ease;
  }
  
  .navbar-custom a:hover::after {
      width: 100%;
  }

  .navbar-toggler-icon {
    color: white;
  }

.navbar-toggler {
    border: 1px solid white;
   }

  /* Hero Section */
  .hero-section {
      background-color: var(--bg-cream);
      padding: 9rem 0 2rem;
      min-height: 70vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
  }
  
  .logo-container {
      text-align: center;
      opacity: 0;
      animation: fadeInLogo 1.5s ease forwards;
  }

  .logo-text {
      width: 770px;
  }
  
  @keyframes fadeInLogo {
      to {
          opacity: 1;
      }
  }
  
  .logo-anos {
      color: #283593;
      font-size: 2rem;
      font-weight: 700;
  }
  
  .subtitle {
      color: var(--navy);
      font-weight: 700;
      font-size: 1.8rem;
      margin-top: 1rem;
  }
  
  .subtitle-small {
      color: #6281B9;
      font-weight: 200;
      font-size: 1.3rem;
      margin-top: 0.5rem;
  }
  
  /* Decorative Elements */
  .decorative-strip {
      position: relative;
      width: auto;
      height: 190px;
      overflow: hidden;
      opacity: 0;
      animation: slideUp 1s ease 0.3s forwards;
  }
  
  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(50px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .tit-section {
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 3px solid #68BBEA;
  }

  .tit-section {
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 3px solid #68BBEA;
  }

  .comunicados{
      border-bottom-color: var(--red);
  }

  .boletins{
      border-bottom-color: var(--navy);
  }

  .programacao{
      border-bottom-color: var(--yellow);
  }

  /* About Section */
  .about-section {
      background-color: var(--green);
      padding: 6rem 0;
      color: white;
  }
  
  .about-section h2 {
      font-weight: 800;
      font-size: 2.5rem;
      letter-spacing: 3px;
      margin-bottom: 2rem;
  }
  
  .about-section p {
      font-size: 1.7rem;
      line-height: 2;
      max-width: 900px;
      margin: 0 auto;
  }
  
  /* Comunicados Section */
  .comunicados-section {
      background-color: var(--yellow);
      padding: 6rem 0;
  }
  
  .comunicados-section h2 {
      font-weight: 800;
      font-size: 2.5rem;
      letter-spacing: 3px;
      color: white;
      margin-bottom: 3rem;
  }
              
  .download-card {
      background: white;
      border-radius: 50px;
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      margin-bottom: 2rem;
  }
          
  .download-icon {
      width: 65px;
      height: 65px;
      background: #e3f2fd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1976d2;
      font-size: 1.7rem;
  }
  
  .download-info h5 {
      font-size: 1.5rem;
      margin: 0;
      font-weight: 600;
      color: #283593;
      text-align: left !important;
  }
  
  .download-info p {
      margin: 0;
      color: #666;
      font-size: 0.9rem;
      text-align: left !important;
  }
  
  .download-btn {
      width: 65px;
      height: 65px;
      background: var(--blue);
      border-radius: 50%;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
  }
  
  .download-btn:hover {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
  }
  
  /* Boletins Section */
  .boletins-section {
      background-color: var(--blue);
      padding: 6rem 0;
  }
  
  .boletins-section h2 {
      font-weight: 800;
      font-size: 2.5rem;
      letter-spacing: 3px;
      color: white;
      margin-bottom: 3rem;
  }
  
  .boletim-card {
      background: white;
      border-radius: 50px;
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      margin-bottom: 1.5rem;
  }
  
  .boletim-card:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }
  
  /* Decorative Strip Bottom */
  .decorative-strip-bottom {
      height: 140px;
      background-color: var(--red);
      overflow: hidden;
  }
  
  /* Programação Section */
  .programacao-section {
      background: #F0F8FF;
      padding: 6rem 0;
  }
  
  .programacao-section h2 {
      font-weight: 800;
      font-size: 2.5rem;
      letter-spacing: 3px;
      color: #283593;
      margin-bottom: 3rem;
  }
  
  .evento-card {
      background: white;
      border-radius: 75px;
      padding: 0.5rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      margin-bottom: 1.5rem;
      border: 1px solid var(--blue);
  }
  
  .evento-card:hover {
      transform: translateX(10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  
  .evento-date {
      color: var(--navy);
      padding: 1rem 1.5rem 1rem 1rem;
      text-align: center;
      min-width: 80px;
      margin-right: 1.5rem;
      border-right: 1px solid #68BBEA;
  }
  
  .evento-date .day {
      font-size: 2rem;
      font-weight: 700;
      display: block;
  }
  
  .evento-date .month {
      font-size: 1.8rem;
      font-weight: 300;
      line-height: normal;
  }
  
  .evento-info h5 {
      font-size: 2rem;
      font-weight: 600;
      color: var(--navy);
  }
  
  .evento-info p {
      font-size: 1.8rem;
      font-weight: 300;
      line-height: normal;
      margin-bottom: 0;
  }
  
  .youtube-btn {
      font-size: 3rem;
      color: var(--red);
      /*color: #d0d0d0;*/
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
  }
  
  .youtube-btn:hover {
      transform: scale(1.15);
  }
  
  /* Footer */
  .footer {
      background-color: var(--navy);
      padding: 2rem 0;
      color: white;
  }
  
  .footer-logo {
      font-size: 2rem;
      font-weight: 800;
  }
  
  /* Parallax Effect */
  .parallax-shape {
      transition: transform 0.1s ease-out;
  }

  .logo-upload {
      width: 250px;
      margin-bottom: 1rem;
  }
  
  .text-upload {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
  }

  form {
    width: 70%;
    margin: 0 auto;
    text-align: left;
  }

  .table-container {
    width: 70%;
    margin: 30px auto;
  }

  table th {
    color: #333;
    font-weight: 600;
  }

  .btn-delete {
    background-color: #f0f0f0;
    border: none;
    transition: all 0.3s ease;
  }

  .btn-delete:hover {
    background-color: #b02a37;
    transform: scale(1.05);
  }

  .btn-delete i {
    pointer-events: none;
  }

  /* Materiais Section */
  .materiais-section {
      background-color: var(--red);
      padding: 6rem 0;
  }
  
  .materiais-section h2 {
      font-weight: 800;
      font-size: 2.5rem;
      letter-spacing: 3px;
      color: white;
      margin-bottom: 3rem;
  }

  .materiais-section .download-info h5 {
      color:#d40c4c;
  }
  
  .download-materiais {
    background: #fde7e3;
  }

  .pdf-icon {
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    -webkit-font-smoothing: antialiased;
    -webkit-mask: url('/static/65anos/img/pdf-icone.svg') no-repeat center;
    mask: url('/static/65anos/img/pdf-icone.svg') no-repeat center;
    -webkit-mask-size: 30px;
    mask-size: 30px;
  }

  .zip-icon {
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    -webkit-font-smoothing: antialiased;
    -webkit-mask: url('/static/65anos/img/zip-icone.svg') no-repeat center;
    mask: url('/static/65anos/img/zip-icone.svg') no-repeat center;
    -webkit-mask-size: 30px;
    mask-size: 30px;
  }

  .icon-comunicado, .icon-boletim {
    background-color: var(--blue);
  }

  .icon-material {
    background-color: var(--red);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .logo-text {
          width: 95%;
      }
      
      .logo-anos {
          font-size: 1.5rem;
      }
      
      .shape {
          width: 50px;
          height: 50px;
      }
      
      .evento-card {
          text-align: center;
          border-radius: 40px;
          padding: .7rem .7rem;
      }
      
      .evento-date {
          margin-right: 0;
          margin-bottom: 0;
          padding: 0.2rem;
          min-width: 55px;
          border-right: none;
      }
      
      .hero-section {
          padding: 10rem 0 2rem;
          min-height: 60vh;
      }

      .subtitle-small {
          font-size: 1rem;
      }

      .decorative-strip {
          width: 100%;
          height: auto;
      }

      .about-section, .comunicados-section, .boletins-section, .programacao-section, .materiais-section  {
          padding: 4rem 1.2rem;
      }

      .tit-section {
          width: 85%;
      }

      .about-section p {
          font-size: 1.2rem;
          line-height: 1.5;
      }

      .download-card {
        padding: 1rem 1rem;
      }

      .download-info h5 {
        font-size: 1.2rem;
      }

      .download-icon, .download-btn {
        width: 60px;
        height: 60px;
      }

      .boletim-card {
        padding: 1rem 1rem;
        margin-bottom: 1rem;
      }

      .evento-date .day {
        font-size: 1.3rem;
      }

      .evento-date .month {
        font-size: 1.2rem;
      }

      .evento-info h5 {
        font-size: 1.1rem;
      }

      .evento-info p {
        font-size: 1.1rem;
      }

      .youtube-btn {
        font-size: 2rem;
        margin-top: 0.5rem;
      }

      .footer {
        padding: 2rem 1rem;
      }

      form {
        width: 90%;
      }
      .table thead {
        display: none;
      }
      .table, .table tbody, .table tr, .table td {
        display: block;
        width: 100%;
      }
      .table tr {
        margin-bottom: 15px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      }
      .table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
      }
      .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: 600;
        color: #555;
      }

  }
