:root {
      --cor-teal: #1a8a82;
      --cor-teal-claro: #22a89e;
      --cor-teal-bg: #1d7a72;
      --cor-vermelho: #c0392b;
      --cor-texto: #2c3e50;
      --cor-branco: #ffffff;
      --cor-creme: #fafaf8;
      --font-titulo: 'Playfair Display', serif;
      --font-script: 'Dancing Script', cursive;
      --font-corpo: 'Lato', sans-serif;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-corpo);
      color: var(--cor-texto);
      background-color: var(--cor-creme);
      line-height: 1.7;
    }

    /* --- BOTÕES --- */

    .btn {
      display: inline-block;
      padding: 14px 36px;
      border-radius: 50px;
      font-family: var(--font-corpo);
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-primario { background-color: var(--cor-vermelho); color: var(--cor-branco); }

    .btn-primario:hover {
      background-color: #a93226;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
    }

    /* --- CONTAINER --- */

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

    /* --- HERO --- */

    .hero {
      background-color: #1c2b2a;
      min-height: 92vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 24px;
    }

    .hero-inner {
      max-width: 900px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
    }

    .hero-conteudo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .hero-logo {
      width: 72px;
      margin-bottom: 28px;
      opacity: 0.9;
    }

    .hero-titulo {
      font-family: var(--font-corpo);
      font-size: 3.8rem;
      font-weight: 700;
      color: var(--cor-branco);
      line-height: 1.1;
      margin-bottom: 8px;
      animation: fadeInUp 0.8s ease both;
    }

    .hero-subtitulo {
      font-family: var(--font-script);
      font-size: 2.8rem;
      color: var(--cor-vermelho);
      line-height: 1.2;
      margin-bottom: 16px;
      animation: fadeInUp 0.8s 0.15s ease both;
    }

    .hero-descricao {
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      max-width: 420px;
      margin-bottom: 40px;
      line-height: 1.7;
      animation: fadeInUp 0.8s 0.3s ease both;
      font-weight: 700;
    }

    .hero-cta {
      animation: fadeInUp 0.8s 0.45s ease both;
    }

    /* Foto redonda do hero */
    .hero-foto-wrapper {
      animation: fadeInUp 0.8s 0.2s ease both;
      flex-shrink: 0;
    }

    .hero-foto-circulo {
      width: 320px;
      height: 320px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid rgba(255,255,255,0.12);
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }

    .hero-foto-circulo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    /* --- SEÇÕES --- */

    .secao { padding: 80px 0; }

    .secao-teal {
      background-color: var(--cor-teal);
      color: var(--cor-branco);
      padding: 80px 0;
    }

    .secao-teal-escuro {
      background-color: var(--cor-teal-bg);
      color: var(--cor-branco);
      padding: 80px 0;
    }

    .titulo-secao {
      font-family: var(--font-script);
      font-size: 2.6rem;
      margin-bottom: 32px;
      line-height: 1.3;
    }

    .titulo-secao-claro { color: var(--cor-branco); }
    .titulo-secao-teal  { color: var(--cor-teal); }

    /* --- APRESENTAÇÃO --- */

    .apresentacao { text-align: center; padding: 80px 0; }

    .apresentacao p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 20px;
      line-height: 1.9;
    }

    .apresentacao strong { color: var(--cor-branco); font-weight: 700; }

    /* --- SOBRE --- */

    .sobre-wrapper {
      background-color: var(--cor-creme);
      padding: 80px 0;
    }

    .sobre {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 48px;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .sobre-foto {
      width: 280px;
      height: 340px;
      overflow: hidden;
      border-radius: 16px;
      flex-shrink: 0;
    }

    .sobre-foto img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .sobre-conteudo {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .sobre-conteudo p {
      font-size: 1rem;
      margin-bottom: 16px;
      line-height: 1.8;
      text-align: justify;
    }

    /* --- LISTAS --- */

    .lista-check { list-style: none; padding: 0; }

    .lista-check li {
      padding: 8px 0 8px 32px;
      position: relative;
      font-size: 1.05rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .lista-check li:last-child { border-bottom: none; }

    .lista-check li::before {
      content: "✦";
      position: absolute;
      left: 0;
      color: var(--cor-vermelho);
      font-size: 0.8rem;
      top: 12px;
    }

    .lista-check-escura li { border-bottom-color: rgba(0,0,0,0.08); color: var(--cor-texto); }
    .lista-check-escura li::before { color: var(--cor-teal); }

    /* --- TURMAS --- */

    .turmas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 40px 0;
    }

    .turma-card {
      background-color: var(--cor-branco);
      border: 2px solid var(--cor-vermelho);
      border-radius: 12px;
      padding: 24px 20px;
      text-align: center;
      font-weight: 700;
      color: var(--cor-vermelho);
      font-size: 1.1rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .turma-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(192,57,43,0.15);
    }

    .turma-card span {
      display: block;
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--cor-texto);
      margin-top: 6px;
    }

    .periodo-card {
      background-color: var(--cor-branco);
      border-radius: 12px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 20px;
      max-width: 500px;
      margin: 0 auto;
    }

    .periodo-icone { font-size: 2.5rem; }

    .periodo-info strong {
      display: block;
      font-size: 1.1rem;
      color: var(--cor-teal);
    }

    /* --- AMBIENTES --- */

    .ambientes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }

    .ambiente-card {
      background-color: var(--cor-branco);
      border-radius: 16px;
      padding: 32px 24px;
      border-top: 4px solid var(--cor-teal);
      transition: transform 0.2s ease;
    }

    .ambiente-card:hover { transform: translateY(-4px); }

    .ambiente-numero {
      font-family: var(--font-titulo);
      font-size: 2rem;
      color: var(--cor-teal);
      margin-bottom: 8px;
    }

    .ambiente-nome {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--cor-vermelho);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* --- INVESTIMENTO --- */

    .investimento-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 40px;
      align-items: stretch;
    }

    .preco-card {
      background-color: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 20px;
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
    }

    .preco-card.destaque {
      background-color: var(--cor-branco);
      color: var(--cor-texto);
      border: none;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }

    .preco-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      opacity: 0.8;
      margin-bottom: 8px;
    }

    .preco-card.destaque .preco-label { color: var(--cor-vermelho); opacity: 1; }

    .preco-valor {
      font-family: var(--font-titulo);
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .preco-card.destaque .preco-valor { color: var(--cor-teal); }

    .preco-prazo {
      font-size: 0.9rem;
      opacity: 0.75;
      margin-bottom: 24px;
    }

    .preco-formas { list-style: none; padding: 0; flex: 1; }

    .preco-formas li {
      padding: 6px 0 6px 20px;
      position: relative;
      font-size: 0.95rem;
      opacity: 0.85;
    }

    .preco-formas li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--cor-vermelho);
      font-weight: 700;
    }

    .preco-card.destaque .preco-formas li { opacity: 1; }

    .cupom-aviso {
      text-align: center;
      margin-top: 32px;
      font-style: italic;
      opacity: 0.8;
      font-size: 0.95rem;
    }

    /* --- FOOTER MINIMALISTA --- */

    .footer-contato {
      background-color: #1c2b2a;
      padding: 64px 24px 0;
    }

    .footer-top {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: flex-start;
      padding-bottom: 48px;
    }

    .footer-marca {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .footer-marca svg { width: 36px; height: 36px; }

    .footer-marca-nome {
      font-family: var(--font-corpo);
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--cor-branco);
      letter-spacing: 0.5px;
    }

    .footer-tagline {
      color: rgba(255,255,255,0.45);
      font-size: 0.9rem;
      max-width: 300px;
      line-height: 1.6;
    }

    .footer-links-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .footer-col-titulo {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 16px;
    }

    .footer-col ul { list-style: none; padding: 0; }

    .footer-col ul li { margin-bottom: 10px; }

    .footer-col ul li a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s ease;
    }

    .footer-col ul li a:hover { color: var(--cor-branco); }

    .footer-divider {
      max-width: 1100px;
      margin: 0 auto;
      border: none;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
    }

    .footer-copyright {
      color: rgba(255,255,255,0.4);
      font-size: 0.82rem;
    }

    .footer-social {
      display: flex;
      gap: 20px;
    }

    .footer-social a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 1.1rem;
      transition: color 0.2s ease;
    }

    .footer-social a:hover { color: var(--cor-branco); }