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

:root {
  --color-principal: #2F0549; /* Roxo Escuro */
  --color-secundaria: #830AD1; /* Roxo */
  --color-complementar1: #D9B5F1; /* Lilás */
  --color-complementar2: #F9EF01; /* Amarelo Vibrante */
  --color-text-dark: #333;
  --color-text-light: #fff;
  --font-body: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: var(--color-text-dark);
  font-family: var(--font-body);
  background: var(--color-text-light);
}

/* Navbar */
header {
  position: fixed;
  width: 100%;
  background: transparent;
  padding: 1rem 5%;
  z-index: 1000;
  transition: background 0.3s ease-in-out;
}

header.scrolled {
  background: var(--color-text-light);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
 
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Logo: cor branca no padrão e preta no hover === */
.navbar .logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff; /* Cor padrão: branco */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

header.scrolled .logo {
  color: var(--color-text-dark); /* Cor do logo se torna preta quando o header estiver branco */
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-light);
  font-weight: 600;
  transition: 0.3s;
}

header.scrolled .nav-links a {
    color: var(--color-text-dark);
}

.nav-links a:hover {
  color: var(--color-secundaria);
}

/* Hero Section */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 10%;
  position: relative;
  min-height: 100vh;
  color: var(--color-text-light);
  overflow: hidden;
}


.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-principal);
  z-index: 1;
}

.hero-content {
  max-width: 50%;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(60%);
}

/* Sections */
.section {
  padding: 5rem 10%;
  text-align: center;
  position: relative;
}

.section.dark {
  background: var(--color-complementar1);
  color: var(--color-principal);
}

.statement {
  background: var(--color-complementar2);
  color: var(--color-principal);
  padding: 4rem 10%;
  text-align: center;
}

.statement h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-principal);
  font-weight: 700;
}

.fast-vibe h2 {
    color: var(--color-principal);
}

.grid-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-layout.reverse-layout {
    flex-direction: row-reverse;
    text-align: right;
}

.grid-layout.reverse-layout .text-content {
    order: 2;
}

.grid-layout.reverse-layout .image-content {
    order: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--color-text-light);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(131,10,209,0.2);
}

    .card i {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 4rem; /* Largura padrão */
      height: 4rem; /* Altura padrão para formar um círculo perfeito */
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--color-secundaria);
      background: var(--color-complementar2);
      border-radius: 50%;
    }

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-secundaria);
  color: var(--color-text-light);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: var(--color-principal);
  transform: scale(1.05);
}

.section-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.premium-list {
  list-style: none;
  text-align: left;
  max-width: 700px;
  margin: 2rem auto;
}

.premium-list li {
  margin: 1.5rem 0;
  font-size: 1.3rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff !important;
}

.premium-list i {
  color: #ffffff;
  font-size: 1.3rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 2rem auto;
}

.form input, .form textarea {
  padding: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #f9f9f9;
  font-size: 1rem;
}

.form button {
  border: none;
  cursor: pointer;
}

footer {
  background: var(--color-principal);
  color: var(--color-text-light);
  text-align: center;
  padding: 2rem;
}

/* Animação Fade-In */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mensagem de sucesso estilizada */
.message-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-principal);
    color: var(--color-text-light);
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
    text-align: center;
}

/* Responsividade */
@media (max-width: 992px) {
    .grid-layout {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .grid-layout.reverse-layout {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-img {
        max-width: 100%;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem 5%;
  }

  .nav-links {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}


    /* Estilo para a seção de Ação Rápida e Viciante */
    .yellow-section {
     /* background-color: #f9ef01;  Cor amarela do tema */
      background-color: #830AD1;
      color: #2F0549; /* Cor escura para contraste */
      padding: 5rem 10%;
      text-align: center;
    }
    
    /* Estilo para os cards dentro da seção amarela */
    .yellow-section .card {
      background: transparent;
      box-shadow: none;
    }

    .yellow-section .card h3,
    .yellow-section .card p,
    .yellow-section .card i {
      color: #2F0549; /* Cor escura para contraste */
    }

/* --- SEÇÃO PREMIUM COM FUNDO RESPONSIVO --- */
.premium-bg-left {
  position: relative;
  background-image: url('assets/images/foto02.jpg');
  background-size: cover; /* Preenche sempre o container */
  background-position: top center; /* Sempre mostra o topo da imagem */
  background-repeat: no-repeat;
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10%;
  text-align: center !important;
  overflow: hidden;
  color: #ffffff !important;
  font-size: 1.5rem;
}


@media (max-width: 768px) {
.premium-bg-left {
 
  font-size: 1.2rem;
}
}
@media (max-width: 768px) {
.premium-list li {
 
  font-size: 1rem;
}
}

.premium-bg-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(73, 0, 74, 0.65);
  z-index: 1;
}

.premium-bg-left .text-content {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 3rem;
  border-radius: 10px;
  width: 50%;
  box-shadow: none;
  color: #ffffff !important;
}

/* --- SEÇÃO PROPÓSITO COM FUNDO RESPONSIVO --- */
.proposito-bg-left {
	font-size: 1.3rem;
  position: relative;
  background-image: url('assets/images/foto01.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0 10%;
  overflow: hidden;
}

.title-section-about {
  color: #FFFFFF;
}
.caption-section-about {
  color: #FFFFFF !important;
}
.description-section-about {
  color: #FFFFFF !important;
}

.proposito-bg-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(73, 0, 74, 0.65);
  z-index: 1;
}

.proposito-bg-left .text-content {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 3rem;
  border-radius: 10px;
  width: 50%;
  box-shadow: none;
  color: #fff;
}

/* --- AJUSTE RESPONSIVO --- */
@media (max-width: 992px) {
  .premium-bg-left,
  .proposito-bg-left {
    min-height: 70vh;
    background-position: top center; /* Mantém o topo visível */
  }

  .premium-bg-left .text-content,
  .proposito-bg-left .text-content {
    width: 70%;
    padding: 2rem;
	font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .premium-bg-left,
  .proposito-bg-left {
    min-height: 60vh;
    background-size: cover; /* Força a imagem a preencher tudo */
    background-position: center top; /* Prioriza topo e centralização horizontal */
  }

  .premium-bg-left .text-content,
  .proposito-bg-left .text-content {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
	font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .premium-bg-left,
  .proposito-bg-left {
    min-height: 50vh;
    background-size: cover; /* Dá zoom se necessário */
    background-position: center top; /* Mostra o topo e corta por baixo */
  }

  .premium-bg-left .text-content,
  .proposito-bg-left .text-content {
    padding: 1.5rem;
	font-size: 1rem;
  }
}

    
    /* Estilo para a página de remoção */
.delete-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.delete-content h2 {
    color: var(--color-principal);
    margin-bottom: 1rem;
}

.delete-content p {
    margin-bottom: 2rem;
}

.warning-box {
    background-color: #ffe6e6; /* Cor de fundo suave para o aviso */
    border: 1px solid #ff4d4d; /* Borda vermelha para chamar a atenção */
    color: #ff4d4d;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: left;
}

.warning-box h3 {
    color: #cc0000;
    margin-bottom: 0.5rem;
}

.delete-form input[type="email"],
.delete-form textarea {
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Botão de exclusão com cor de destaque */
.btn-delete {
    background-color: #ff4d4d;
    transition: background-color 0.3s ease;
}

.btn-delete:hover {
    background-color: #cc0000;
}

/* Estilo para o checkbox personalizado */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-principal);
    border-color: var(--color-principal);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.hero-content {
  max-width: 90%;
  text-align: center;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo principal */
.hero-logo {
  width: 100%;
  max-width: 350px; /* Tamanho máximo no desktop */
  height: auto;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease-in-out;
}

/* Subtítulo abaixo do logo */
.hero-subtitle {
  color: var(--color-text-light);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 500px;
}

/* Botão centralizado */
.hero-content .btn {
  align-self: center;
}

/* Responsividade do logo */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 250px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 200px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

.values-list {
  list-style-type: none; /* Remove os pontos de lista */
  padding: 0; /* Remove o preenchimento padrão */
  margin: 0 auto; /* Centraliza a lista no container */
  width: fit-content; /* Ajusta a largura ao conteúdo da lista */
  text-align: left; /* Alinha os itens da lista à esquerda */
}

.values-list li {
  display: flex; /* Alinha ícones e texto na mesma linha */
  align-items: center; /* Alinha o ícone e o texto verticalmente */
  margin-bottom: 1rem; /* Espaço entre os itens */
}

.values-list li i {
  margin-right: 10px; /* Espaçamento entre o ícone e o texto */
}

.section-image {
  text-align: center; /* Centraliza a imagem dentro da seção */
  margin-top: 2rem; /* Dá um espaço entre o texto e a imagem */
}

.responsive-image {
  max-width: 100%; /* Garante que a imagem não ultrapasse a largura do container */
  height: auto; /* Mantém a proporção da imagem */
  max-height: 300px; /* Limita a altura máxima para evitar imagens muito grandes */
  margin: 0 auto; /* Garante que a imagem fique centralizada */
}

#jogue-organize-celebre h3 {
  color: #830AD1; /* Cor roxa para combinar com a carinha */
  font-size: 1.5rem;
}

@media (max-width: 768px) {
#jogue-organize-celebre h3 {
  color: #830AD1; /* Cor roxa para combinar com a carinha */
  font-size: 1.2rem;
}
}

#jogue-organize-celebre h2 {
  color: #830AD1; /* Cor roxa para combinar com a carinha */
  
}
@media (max-width: 768px) {
#jogue-organize-celebre h2 {
  color: #830AD1; /* Cor roxa para combinar com a carinha */
  font-size: 1.2rem;
}
}


/* === Seção Contato === */
#contato {
  background-image: url('assets/images/happy2.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 50vh;
  color: white; /* Define a cor do texto como branca */
  padding: 3rem 10%; /* Adiciona espaçamento nas laterais */
  position: relative;
}

/* === Lista sem pontinhos === */
#contato ul {
  list-style: none; /* Remove os marcadores da lista */
  padding-left: 0; /* Remove qualquer padding */
  color: white; /* Garante que a lista também fique com texto branco */
}

/* === Alinhamento do texto e imagem === */
#contato .text-content {
  display: flex;
  justify-content: flex-start; /* Texto fica à esquerda */
  align-items: left;
  gap: 2rem; /* Espaço entre o texto e a imagem */
}

/* === Imagem ao lado da lista === */
#contato .text-content img {
  max-width: 400px; /* Define o tamanho máximo da imagem */
  width: 100%; /* Garante que a imagem seja responsiva */
  height: auto;
  object-fit: contain; /* Mantém a proporção da imagem */
}

#contato .premium-list i {
  color: white; /* Garante que os ícones da seção Contato fiquem brancos */
}

/* === Responsividade === */
@media (max-width: 768px) {
  #contato .text-content {
    flex-direction: column; /* Coloca o texto e a imagem em coluna quando a tela for menor */
    text-align: center; /* Centraliza o texto */
  }

  #contato .text-content img {
    max-width: 100%; /* Garante que a imagem ocupe 100% da largura disponível */
    margin-top: 1rem; /* Espaçamento entre a lista e a imagem */
	font-size: 1.5rem
  }
}

/* === Seção Contato: Alinhar título à esquerda e cor branca === */
#contato h2 {
  text-align: left; /* Alinha o título à esquerda */
  color: white; /* Define a cor do título como branca */
  
  padding: 3rem 25%;
}

@media (max-width: 768px) {
  #contato h2 {
	 text-align: center;
    font-size: 1.6rem;
  }
}


/* === Seção Início: adicionar background transparente com topo.jpg === */
/* === Seção Início: Ajuste para topo.jpg como background === */
#inicio {
  background-image: url('assets/images/topo.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  
  
  position: relative;
}

/* Overlay semi-transparente */
#inicio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(73, 0, 74, 0.65); 
  z-index: 1;
}

li {
  color: white; /* Torna o texto branco por padrão */
}

.contact-list {
  list-style: none;
  text-align: left;
  max-width: 700px;
  margin: 2rem auto;
}



ul.contact-list li {
  color: white; /* Torna o texto branco por padrão */
  -webkit-touch-callout: none; /* Para dispositivos Apple */
  -webkit-user-select: none; /* Previne a seleção do número de telefone no Safari */
  -moz-user-select: none; /* Previne a seleção do número de telefone no Firefox */
  -ms-user-select: none; /* Previne a seleção do número de telefone no Internet Explorer */
  user-select: none; /* Previne a seleção do número de telefone em outros navegadores */

  /* Remove o comportamento de link no iOS */
  -webkit-tap-highlight-color: transparent; /* Remove o destaque ao tocar no link */
  margin: 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1rem;
}

ul.contact-list li a {
  text-decoration: none; /* Remove o sublinhado */
  color: inherit; /* Garante que a cor do link seja a mesma do texto */

}

/* === Responsividade === */
@media (max-width: 768px) {
  .contact-list li {
    font-size: 1.2rem !important; /* Ajusta o tamanho da fonte dos itens da lista */
    text-align: center; /* Centraliza o texto */
  }
}




.download-area {
  margin-top: 25px;
  text-align: center;
  width: 100%;
}

.download-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff; /* deixe branco para combinar com seu contato */
}

.download-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  text-align: center;
  justify-content: center; 
}

.download-buttons img {
  align-items: center;
  height: 55px;
  transition: transform 0.2s ease;
}

.download-buttons img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .download-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .download-buttons img {
    height: 50px;
  }
}

/* HIDDEN BY DEFAULT – só aparece no mobile via JS */
.mobile-app-header {
   display: flex;
  visibility: hidden; 
}







/* Versão Mobile */
@media (max-width: 768px) {
  .mobile-app-header {
	visibility: visible;  
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #000;
    padding: 10px 15px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
  }

	.mobile-app-icon {
	  height: 40px;
	  width: 40px;               /* garante proporção quadrada */
	  object-fit: cover;         /* evita distorção */
	  border-radius: 30%;        /* formato exato de ícone de app iOS */
	  display: block;
	}

  .mobile-app-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    flex-grow: 1;
  }

  .app-title {
    font-size: 12px;
    font-weight: 700;
    color: #000;
  }

  .app-subtitle {
    font-size: 10px;
    margin-top: -2px;
    color: #000;
  }

  .mobile-app-btn {
    background: #fff;
    border: 2px solid #7d2bff; /* roxo */
    color: #7d2bff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
  }

  /* empurrar o conteúdo pra baixo, já que a header é fixa */
  body {
    padding-top: 55px;
  }
  
  #mobile-download-btn {
    position: relative !important;
    z-index: 999999999 !important;
    pointer-events: auto !important;
  }
  #mobile-app-header {
    position: fixed !important;
    z-index: 999999998 !important;
    pointer-events: auto !important;
  }
  #mobile-app-header a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
#mobile-app-header {
  pointer-events: auto !important;
}

/* Botão X de fechar */
.mobile-app-close {
  font-size: 18px;
  font-weight: 50;
  color: #830AD1; /* roxo do tema */
  margin-right: 10px;
  cursor: pointer;
  user-select: none;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-app-close:active {
  transform: scale(0.9);
}

/* Ajustar alinhamento dos itens */
.mobile-app-header {
  gap: 10px;
}



}
