    :root {
      --primary: #c0392b;
      --dark: #1e1e1e;
      --light: #ffffff;
      --gray: #f5f5f5;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,.08);
      z-index: 999;
    }

    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      font-size: .9rem;
    }

    a { text-decoration: none; color: inherit; }

    .container {
      width: 90%;
      max-width: 1100px;
      margin: auto;
    }

    header {
      min-height: 90vh;
      color: var(--light);
      display: flex;
      align-items: center;
    }

    header .hero {
      max-width: 600px;
      animation: fadeUp 1s ease;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.2rem;
      margin-bottom: 25px;
    }

    .btn {
      display: inline-block;
      background: var(--primary);
      color: var(--light);
      padding: 14px 28px;
      border-radius: 40px;
      font-weight: 600;
      transition: transform .2s, box-shadow .2s;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,.25);
    }

    section {
      padding: 80px 0;
    }

    section h2 {
      text-align: center;
      font-size: 2.4rem;
      margin-bottom: 20px;
    }

    section .subtitle {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
      color: #555;
    }

    .about {
      background: var(--gray);
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      transition: transform .3s;
    }

    .gallery img:hover {
      transform: scale(1.04);
    }

    .schedule {
      background: var(--gray);
    }

    .matricula {
      background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../images/image4.jpg') center/cover no-repeat;
      color: var(--light);
      text-align: center;
      padding: 120px 0;
    }

    .matricula p {
      max-width: 800px;
      margin: 0 auto 30px;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .day {
      background: var(--light);
      padding: 25px;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0,0,0,.06);
    }

    .day h3 {
      margin-bottom: 15px;
      color: var(--primary);
    }

    .day ul { list-style: none; }

    .day li {
      margin-bottom: 10px;
      font-size: .95rem;
    }

    .cta {
      text-align: center;
      background: linear-gradient(135deg, #c0392b, #8e2c1f);
      color: var(--light);
    }

    footer {
      background: #111;
      color: #aaa;
      text-align: center;
      padding: 30px 0;
      font-size: .9rem;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      header h1 { font-size: 2.3rem; }

      section h2 { font-size: 1.8rem; }

      body { line-height: 1.4; }

      header .hero { text-align: center; }

      .hamburger {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        display: none;
        box-shadow: 0 2px 10px rgba(0,0,0,.08);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        padding: 15px;
        border-bottom: 1px solid #eee;
      }
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      max-width: 90%;
      max-height: 90%;
    }

    .close {
      position: absolute;
      top: 15px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }