* { margin:0; padding:0; box-sizing:border-box; font-family: 'Roboto', sans-serif; }
body { background:#EEEEEE; color:#333; scroll-behavior:smooth; }
a { text-decoration: none; }

/* Cabeçalho */
header { 
  background:#111; 
  color:white; 
  padding:20px 40px; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  position:sticky; 
  top:0; 
  z-index:100; 
}
header h1 { 
  color:aliceblue; 
  font-size:1.8rem; 
}
nav { 
  display:flex; 
}
nav a { 
  margin-left:20px; 
  color:white; 
  font-weight:bold; 
  transition:.3s; 
}
nav a:hover { 
  color:#479bd2; 
}

/* Botão do menu mobile */
.menu-toggle {
  display:none;
  font-size:2rem;
  background:none;
  border:none;
  color:white;
  cursor:pointer;
}

/* Hero */
.hero { height:90vh; background:url(imagens/foto1-min.jpg) no-repeat center/cover; display:flex; justify-content:center; align-items:center; flex-direction:column; text-align:center; color:white; padding:20px; animation: fadeIn 1s ease-in; }
.hero h2 { font-size:3rem; margin-bottom:20px; text-shadow:2px 5px 14px rgba(0,0,0,0.6); animation: slideIn 1s ease-out; }
.hero p { font-size:1.2rem; margin-bottom:30px; max-width:700px; text-shadow:2px 5px 14px rgba(0,0,0,0.6); }
.hero a { padding:15px 30px; background:#25d366; color:white; border-radius:8px; font-size:1.2rem; transition:.3s; }
.hero a:hover { background:#1ebe57; transform:scale(1.05); }

/* Benefícios */
.beneficios { display:flex; justify-content:center; flex-wrap:wrap; gap:20px; margin:50px auto; max-width:1100px; }
.beneficio { background:white; padding:30px; border-radius:10px; text-align:center; flex:1; min-width:250px; box-shadow:0 4px 15px rgba(0,0,0,0.1); transition:.3s; }
.beneficio:hover { transform:translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,0.15); }
.beneficio img { width:60px; height:60px; margin-bottom:15px; }

/* Planos */
.planos-grid { display:flex; gap:20px; flex-wrap:wrap; justify-content:center; margin:50px auto; max-width:1200px; }
.plano { background:white; border-radius:10px; padding:30px; text-align:center; flex:1; min-width:250px; max-width:300px; transition:.3s; box-shadow:0 4px 15px rgba(0,0,0,0.1); }
.plano:hover { transform:scale(1.05); box-shadow:0 10px 25px rgba(0,0,0,0.2); }
.plano h3 { margin-bottom:15px; color:#ff0000; }
.plano p { margin-bottom:20px; }
.plano a { background:#25d366; color:white; padding:10px 20px; border-radius:6px; display:inline-block; transition:.3s; }
.plano a:hover { background:#1ebe57; transform:scale(1.05); }

 .comentario {
    position: absolute;
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 20px;
    background-color: white;
    color: rgb(0, 0, 0);
    border-radius: 10px;
    border: 0.5px solid #E0E0E0;
    padding: 30px;
    box-shadow: 0px 5px 8px rgba(65, 49, 49, 0.3);
    opacity: 0;
    animation: fade 12s infinite;
    text-align: center;
  }

  .comentario:nth-child(1) {
    animation-delay: 0s;
  }

  .comentario:nth-child(2) {
    animation-delay: 3s;
  }

  .comentario:nth-child(3) {
    animation-delay: 6s;
  }

  .comentario:nth-child(4) {
    animation-delay: 9s;
  }

  @keyframes fade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
  }

 .nome {
    font-weight: bold;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
  }

  .estrelas {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .texto {
    color: #000000;
  }

  .comentarios {
    max-width: 300px;
  }

  .area{
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    margin-bottom: 20px;
    transition: border 0.3s ease;
  }


/* Landing / captura */
.form-container { background: linear-gradient(to right, rgb(0, 0, 0), rgb(215, 39, 3));; padding:40px; box-shadow:0 4px 15px rgba(0,0,0,0.15); text-align:center; max-width:500px; margin:50px auto; position:relative; z-index:1; }
.form-container h3 { margin-bottom:20px; color:white; }
.form-container input[type="text"], .form-container input[type="email"] { width:100%; padding:12px; margin-bottom:15px; border-radius:6px; border:1px solid #ccc; font-size:1rem; }
.form-container button { padding:12px 20px; background:white; color:black; border:none; border-radius:6px; font-size:1.1rem; cursor:pointer; transition:.3s; }
.form-container button:hover { background:#E0E0E0; transform:scale(1.05); }
.countdown { text-align:center; font-size:1.3rem; margin-bottom:20px;color:white }

/* WhatsApp flutuante */
.whatsapp-float { position:fixed; bottom:20px; right:20px; width:60px; height:60px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:2px 2px 10px rgba(0,0,0,0.3); z-index:1000; }
.whatsapp-float img { width:35px; height:35px; }
.whatsapp-float:hover { background:#1ebe57; }

.carrossel {
      width: 190px;   /* largura fixa */
      height: 190px;  /* altura fixa */
      margin: 50px auto;
      overflow: hidden;
      border-radius: 10px;
      border: 1px solid #7e7e7e;
    }

    .slides {
      display: flex;
      width: calc(190px * 3); /* 3 imagens lado a lado */
      animation: slide 9s infinite;
    }

    .slides img {
      width: 190px;
      height: 190px;
      object-fit: cover; /* mantém proporção sem distorcer */
    }

    /* animação automática */
    @keyframes slide {
      0%, 20%   { transform: translateX(0); }        /* mostra a 1ª foto */
      33%, 53%  { transform: translateX(-190px); }   /* mostra a 2ª foto */
      66%, 86%  { transform: translateX(-380px); }   /* mostra a 3ª foto */
      100%      { transform: translateX(0); }        /* volta pra 1ª */
    }

.flex1{
    display: flex;
    align-items: center;
    justify-content: center;
}
.texto2{
    padding: 10px;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    width: 900px;
    word-wrap: break-word;
}
.footer{
    background-color: black;
    color: white;
    padding: 50px;
    font-size: 15px;
    font-style: initial;
    justify-content: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    align-items: center;
    text-align: center;
    border: none;
    margin-top: 0.6px;
    margin-bottom: 0%;}

/* Animações */
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes slideIn { from {transform:translateY(-50px); opacity:0;} to {transform:translateY(0); opacity:1;} }



@media(max-width:850px){
  nav {
    position:absolute;
    top:70px;
    right:0;
    background:#111;
    flex-direction:column;
    width:200px;
    display:none; /* escondido por padrão */
    padding:10px;}
  nav a {
    margin:10px 0;}
  .menu-toggle {
    display:block;}
  nav.active {
    display:flex; /* mostra quando abrir */ }
  .hero h2{ font-size:2rem; }
  .planos-grid{ flex-direction:column; align-items:center; }
  .beneficios{ flex-direction:column; align-items:center; }
  .comentario {
        position: absolute;
        width: 250px;
        left: 50%;
        margin-left: -125px;
        padding: 15px;
        font-size: 14px;}
  .estrelas {
        font-size: 16px;}
  .footer{
        padding: 25px;
        font-size: 14px; 
        margin-top: 1px;}
  .flex1{
        flex-direction: column;}
  .texto2{
        padding: 7px;
        font-size: 14px;
        margin-bottom: 13px;
        width: 315px;}

  .carrossel {
        width: 190px;   
        height: 190px;  
      }

      .slides {
        width: calc(190px * 3);
      }

      .slides img {
        width: 190px;
        height: 190px;
      }

      /* usa mesma animação */
      @keyframes slide {
        0%, 20%   { transform: translateX(0); }
        33%, 53%  { transform: translateX(-190px); }
        66%, 86%  { transform: translateX(-380px); }
        100%      { transform: translateX(0); }
      }

}
