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

    body {
      font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
      background-color: #f4f0fa;
      color: #2d1b3d;
      line-height: 1.6;
      padding: 1.5rem 1rem;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fcfaff;
      box-shadow: 0 8px 24px rgba(90, 50, 130, 0.08);
      border-radius: 32px;
      padding: 1.8rem 2rem 2.8rem;
      border: 1px solid #e5d9f0;
    }

    /* ===== HEADER COM ÍNDICE ===== */
    .header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 1.2rem;
      border-bottom: 2px solid #d9c8ec;
      margin-bottom: 2rem;
    }

    .header .logo h1 {
      font-size: 2rem;
      font-weight: 300;
      letter-spacing: -0.3px;
      color: #2d1b3d;
    }

    .header .logo h1 span {
      font-weight: 600;
      color: #8b5fbf;
    }

    .header .logo .tagline {
      font-size: 0.85rem;
      color: #7a5d99;
      font-weight: 300;
      letter-spacing: 0.5px;
    }

    /* navegação / índice */
    .nav-index {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 1.2rem;
      background: #f3edfb;
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      border: 1px solid #ddd0ec;
    }

    .nav-index a {
      text-decoration: none;
      color: #4a2d66;
      font-weight: 450;
      font-size: 0.95rem;
      padding: 0.3rem 0.1rem;
      border-bottom: 2px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }

    .nav-index a:hover {
      border-bottom-color: #9b7ac9;
      color: #2d1b3d;
    }

    .nav-index a.ativo {
      border-bottom-color: #7b4fa8;
      color: #3d1f5e;
      font-weight: 600;
    }

    /* ===== ABAS (Sobre / Serviços / Contato) ===== */
    .abas {
      margin-top: 0.8rem;
      margin-bottom: 2.5rem;
      background: #f6f0fd;
      border-radius: 24px;
      padding: 1.8rem 2rem;
      border: 1px solid #e2d3f2;
      transition: background 0.2s;
    }

    .abas h2 {
      font-size: 1.5rem;
      font-weight: 400;
      color: #3d1f5e;
      margin-bottom: 0.4rem;
    }

    .abas h2 small {
      font-weight: 300;
      font-size: 1rem;
      color: #7a5d99;
      margin-left: 0.8rem;
    }

    .abas p {
      color: #34234a;
      max-width: 700px;
      margin-top: 0.3rem;
    }

    .abas .destaque {
      color: #7b4fa8;
      font-weight: 500;
    }

    .abas .contato-info {
      margin-top: 0.6rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
    }

    .abas .contato-info div {
      background: #f0e8fa;
      padding: 0.4rem 1.2rem;
      border-radius: 30px;
      border: 1px solid #dccbeb;
      font-size: 0.95rem;
    }

    .abas .contato-info strong {
      color: #4a2d66;
    }

    /* esconder/mostrar abas via seletor :target */
    .aba-conteudo {
      display: none;
    }

    .aba-conteudo:target {
      display: block;
    }

    .aba-conteudo#sobre {
      display: block;
    }

    /* ===== GRADE DE FOTOS ===== */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.8rem;
      margin-top: 2rem;
    }

    .foto-item {
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 14px rgba(90, 50, 130, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: 1px solid #ede6f7;
    }

    .foto-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(100, 60, 150, 0.08);
      border-color: #cdb8e6;
    }

    .foto-imagem {
      width: 100%;
      height: 250px;
      background-color: #e5d9ef;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5b3e78;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
      border-bottom: 1px solid #e6dbf2;
    }

    .foto-descricao {
      padding: 1.2rem 1.2rem 1.5rem;
      background: #ffffff;
    }

    .foto-descricao h3 {
      font-size: 1.15rem;
      font-weight: 500;
      color: #2d1b3d;
      margin-bottom: 0.15rem;
    }

    .foto-descricao .subtitulo {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: #8b6aaa;
      font-weight: 400;
      margin-bottom: 0.3rem;
    }

    .foto-descricao .info-extra {
      font-size: 0.85rem;
      color: #5f477a;
      margin: 0.25rem 0 0.4rem;
      font-weight: 300;
    }

    .foto-descricao p {
      font-size: 0.95rem;
      color: #3f2d55;
      line-height: 1.4;
      font-weight: 300;
    }

    .footer {
      margin-top: 3.5rem;
      padding-top: 2rem;
      border-top: 2px solid #d9c8ec;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }

    .footer .creditos {
      font-size: 0.9rem;
      color: #5f477a;
      font-weight: 300;
    }

    .footer .creditos strong {
      font-weight: 500;
      color: #2d1b3d;
    }

    .footer .social {
      display: flex;
      gap: 2rem;
    }

    .footer .social a {
      text-decoration: none;
      color: #5b3e78;
      font-size: 0.95rem;
      border-bottom: 1px dotted transparent;
      transition: border-color 0.2s, color 0.2s;
      font-weight: 350;
    }

    .footer .social a:hover {
      border-bottom-color: #9b7ac9;
      color: #2d1b3d;
    }

    .social i {
            font-size: 3rem;
            color: #5f477a;
            margin-bottom: 10px;
        }

    .foto-1 { background-image: url(/image/casal.jpg)}
    .foto-2 { background-image: url(/image/prewdn.jpg); }
    .foto-3 { background-image: url(/image/casamento.jpg); }
    .foto-4 { background-image: url(/image/gravida.jpg); }
    .foto-5 { background-image: url(/image/baby.jpg); }
    .foto-6 { background-image: url(/image/15anos.jpg); }
    .foto-7 { background-image: url(/image/greenbird.jpg);}
    .foto-8 { background-image: url(/image/moon.jpg);}

    @media (max-width: 700px) {
      .header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .nav-index { border-radius: 30px; padding: 0.5rem 1rem; width: 100%; justify-content: center; }
      .container { padding: 1.2rem 1rem 2rem; }
      .abas { padding: 1.2rem 1rem; }
      .footer { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .header .logo h1 { font-size: 1.6rem; }
      .grid { gap: 1rem; }
      .foto-imagem { height: 180px; }
    }