/* Reset & Base */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      background: #f5f5f5; color: #333;
      font-family: 'Roboto', sans-serif;
      line-height: 1.6; min-height: 100vh;
      display: flex; flex-direction: column;
    }

    /* Headings */
    h1, h2, h3 {
      font-family: 'Merriweather', serif;
      color: #870b44; text-align: center;
    }
    main p { text-align: justify; }
    form { text-align: left; }

    /* Header */
    header {
      background: #870b44; color: #fff;
      padding: 1rem 2rem;
      display: flex; flex-direction: column;
    }
    .header-top {
      width: 100%; display: flex;
      justify-content: space-between;
      align-items: center; flex-wrap: wrap;
    }
    .logo { display: flex; align-items: center; }
    .logo i { margin-right: 0.5rem; font-size: 1.6rem; }

    /* Buttons padrão */
    .btn {
      display: inline-flex; align-items: center;
      background-color: #fff; color: #870b44;
      padding: 0.5rem 1rem; border: none; border-radius: 4px;
      cursor: pointer; font-weight: 500;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
    }
    .btn i { margin-right: 0.4rem; }
    .btn:hover { background-color: #f0f0f0; transform: scale(1.03); }

    /* Botões menu */
    .menu-btn, .close-menu {
      background-color: rgba(255, 255, 255, 0.15);
      color: #fff; border: none;
      cursor: pointer; padding: 0.6rem;
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
    }
    .menu-btn i, .close-menu i { font-size: 1.4rem; }
    .menu-btn:hover, .close-menu:hover {
      background-color: rgba(255, 255, 255, 0.25);
    }
    .close-menu { align-self: flex-end; margin-bottom: 1.5rem; }

    /* Nav (slide-in) */
    nav {
      position: fixed; top: 0; right: -260px;
      width: 260px; height: 100%;
      background: #870b44; box-shadow: -2px 0 6px rgba(0,0,0,0.1);
      transition: right 0.3s ease;
      padding: 2rem 1.5rem;
      display: flex; flex-direction: column;
      z-index: 1000;
    }
    nav.active { right: 0; }
    nav a {
      display: flex; align-items: center;
      margin: 1rem 0; color: #fff;
      font-weight: 500; text-decoration: none;
      transition: color 0.3s, transform 0.3s;
    }
    nav a i { margin-right: 0.6rem; width: 1.2rem; text-align: center; }
    nav a:hover { color: #a3c293; transform: translateX(6px); }

    /* Main Content */
    main {
      flex: 1; padding: 2rem;
      max-width: 960px; margin: 0 auto; text-align: center;
    }
    .white-bg {
      background: #fff; color: #870b44;
      padding: 1rem; border-radius: 6px;
    }
	
	/*Formulário*/
	form input,
	form textarea,
	form select {
	  width: 100%;
	  padding: 0.5rem;
	  margin-bottom: 1rem;
	  border: 1px solid #ccc;
	  border-radius: 4px;
	  display: block; /* força quebra de linha */
	  box-sizing: border-box;
	}

	form label {
	  display: block;
	  margin-bottom: 0.3rem;
	  font-weight: 500;
	}
	
	/*SocialMidias*/
		.social-section {
	  text-align: center;
	  padding: 40px 20px;
	  background: #fff;
	  margin-bottom: 2rem;
	}

	.social-section h2 {
	  color: #870b44;
	  margin-bottom: 20px;
	  font-size: 24px;
	}

	.social-links {
	  display: flex;
	  justify-content: center;
	  gap: 20px;
	  flex-wrap: wrap;
	}

	.social {
	  display: flex;
	  align-items: center;
	  gap: 8px;
	  padding: 12px 20px;
	  border-radius: 8px;
	  font-size: 18px;
	  text-decoration: none;
	  color: #fff;
	  transition: transform 0.2s;
	}

	.social i {
	  font-size: 22px;
	}

	/* Cores personalizadas */
	.instagram, .tiktok, .whatsapp, .pinterest, .youtube {
    background: #870b44;
}
	/* Hover */
	.social:hover {
	  transform: scale(1.05);
	  opacity: 0.9;
	}

    /* Footer */
    footer {
      background: #870b44; color: #fff;
      padding: 1rem 2rem; text-align: center;
      font-size: 0.9rem;
    }
	
@media (max-width: 620px) {
    /* Esconde h2 do header */
    header h2 {
        display: none;
    }

    /* Social links empilhados e tamanho padronizado */
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 12px; /* espaço entre os ícones */
    }

    .social {
        width: 200px; /* largura padronizada */
        justify-content: center;
        font-size: 16px; /* tamanho do texto ajustado */
        padding: 10px; /* padding uniforme */
    }

    .social i {
        font-size: 20px; /* tamanho do ícone */
    }
}
