    :root {
      --cor-primaria: #6d143c;
      --cor-destaque: #ffe599;
      --cor-fundo: #1b1b1b;
      --cor-fundo-secao: #2c2c2c;
      --cor-texto: #f5f5f5;
      --cor-botao: #5a5a7466; /* 66 final é a opacidade 0.4 em HEX */
      --cor-hover: #b13f68;
    }

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

    body {
      font-family: 'Open Sans', sans-serif;
      background-color: black; /* fundo-secao*/
      background-image: url('../img/ambiente_rosas.png'); 
      background-size: cover;
      background-repeat: no-repeat;  
      color: #f5f5f5;
      line-height: 1.7;
    }

    header {
      background: #000cc;
      padding: 70px 20px 40px;
      text-align: center;
      border-bottom: 3px solid var(--cor-primaria);
      box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    }

    header h1,
    header h2 {
      font-family: 'Great Vibes', cursive;
      color: var(--cor-destaque);
      text-shadow: 2px 2px 6px var(--cor-primaria);
    }

    header h1 {
      font-size: 3.5em;
      animation: fadeInDown 1s ease-in-out;
    }

    header h2 {
      font-size: 2.2em;
      margin-top: 10px;
    }

    header h3 {
      color: #bbb;
      margin-top: 12px;
      font-style: italic;
    }

    main {
      max-width: 1100px;
      margin: auto;
      padding: 50px 25px;
      display: grid;
      gap: 50px;
    }

    section {
      background: rgba(0, 0, 0, 0.06); /*   MODIFICADO */
      padding: 40px 30px;
      border-radius: 20px;
      border: 1px solid #3a3a3a;
      border-bottom: 5px solid var(--cor-primaria);
      box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
      transition: transform 0.3s ease;
    }

    section:hover {
      transform: translateY(-4px);
    }

    section h2 {
      color: var(--cor-destaque);
      font-size: 2em;
      margin-bottom: 20px;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }

    .sobre p {
      font-size: 1.1em;
    }
    
    .atividades ul {
      list-style: none;
      font-size: 1.1em;
      padding-left: 0;
    }

    .atividades li {
      margin-bottom: 12px;
      padding-left: 24px;
      position: relative;
    }

    .atividades li::before {
      content: "🜁";
      
      position: absolute;
      left: 0;
      color: var(--cor-destaque);
      font-size: 1.2em;
    }

    .galeria-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .galeria-grid img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid #555;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .galeria-grid img:hover {
      transform: scale(1.05);
    }

    .contato {
      background: #222;
      padding: 30px;
      border-radius: 20px;
      text-align: center;
    }

    .contato a {
      display: inline-block;
      margin: 12px;
      padding: 14px 26px;
      background-color: var(--cor-botao);
      border-bottom: 3px solid var(--cor-primaria);
      color: white;
      text-decoration: none;
      border-radius: 20px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .contato a i {
      margin-right: 8px;
    }

    .contato a:hover {
      background-color: var(--cor-hover);
      transform: scale(1.05);
    }

    footer {
      text-align: center;
      background: linear-gradient(135deg, #000, #1a1a1a);
      color: #aaa;
      padding: 25px;
      font-size: 0.95em;
      margin-top: 50px;
/*      border-top: 4px solid var(--cor-primaria);*/
    }
    
    .pagina-casa footer {
      height: 43px;
      padding: 10px;
      font-size: 0.8rem;
    }


    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2.5em;
      }
      header h2 {
        font-size: 1.7em;
      }
      section {
        padding: 20px;
      }
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      padding-top: 60px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.9);
    }

    .modal-conteudo {
      margin: auto;
      display: block;
      max-width: 90%;
      max-height: 80vh;
      border-radius: 10px;
      animation: zoom 0.3s ease-in-out;
    }

    @keyframes zoom {
      from { transform: scale(0.7); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    #legenda {
      text-align: center;
      color: #ddd;
      padding: 10px;
      font-size: 1em;
    }

    .fechar {
      position: absolute;
      top: 30px;
      right: 50px;
      color: #f1f1f1;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .fechar:hover {
      color: var(--cor-destaque);
    }
    