
    :root{
      --bg: #000;          /* fundo preto */
      --text: #fff;        /* texto branco */
      --muted: #b3b3b3;    /* texto secundário */
      --card: #0d0d0d;     /* fundo dos cards */
      --accent: #000000;   /* destaque sutil (verde) */
      --accent-2: #60a5fa; /* destaque sutil (azul) */
      --border: #1f1f1f;   /* borda discreta */
    }

    html, body { height: 100%; }
    body{
      margin: 0;
      font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      background: radial-gradient(1200px 800px at 70% -20%, rgba(0, 0, 0, 0.08), transparent),
                  radial-gradient(800px 600px at -10% 110%, rgba(96,165,250,0.08), transparent),
                  var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    /* Hero */
    .section-1{ padding: 10px 10px 0; }
    .row{ display:flex; flex-wrap: wrap; align-items:center; justify-content:center; gap:24px; }
    .col-a{ flex:1 1 360px; min-width: 280px; }
    .col-b{ flex:1 1 360px; min-width: 280px; display:flex; justify-content:center; }
    .col-b img{ display:block; width:100%; max-width:420px; height:auto; border-radius:24px; border:1px solid var(--border); }

    h1{ font-size: clamp(2rem, 3.6vw, 3rem); margin: 0; background-image: linear-gradient(90deg,#ffffff,#bbbbbb); -webkit-background-clip:text; color:transparent; }
    .experiencia{ font-size: clamp(1.25rem, 2.5vw, 1.6rem); background-image: linear-gradient(90deg,#ffffff,#9e9e9e); -webkit-background-clip:text; color:transparent; text-align:center; margin: 20px 0; }

    /* Cards grid (mesmo visual da outra página) */
    .section-2{ padding: 10px 0; display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:16px; align-items: stretch; }
    @media (max-width: 1024px){ .section-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
    @media (max-width: 640px){ .section-2{ grid-template-columns: 1fr; } }

    .card{
      background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 60%), var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 20px;
      display: flex; flex-direction: column; gap: 14px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08) inset;
    }
    .card:hover{ transform: translateY(-2px); border-color: #2a2a2a; }

    .card img, .card video{
      width: 100%; height: auto; display:block; border-radius: 12px; border:1px solid var(--border);
    }

    .card p, .card h2{ margin: 0; color: var(--text); font-weight:600; font-size: 1rem; }
    .card .preco{ font-weight:500; color: var(--muted); font-size: .95rem; }

    /* Botão (se quiser usar) */
    .btn-ver{
      align-self: start;
      background: #fff; color:#000; font-weight:700; border:none; border-radius:14px; padding:10px 16px; cursor:pointer; transition: transform .08s ease; }
    .btn-ver:active{ transform: translateY(1px); }

    /* Social icons section */
    .contact-icons{ display:flex; gap:20px; margin: 20px 0; justify-content:center; align-items:center; }

    /* Responsividade extra */
    @media (max-width: 720px){
      .row{ flex-direction: column; }
    }

/* Global Styles */

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-content: center;
    align-self: center;
}

.col-a {
  display: flex;
  flex-direction: column;
    flex: 1;
    margin-left: 100px;
    align-items: flex-start;
}

.div1home{
  display: flex;
}

.col-a h1 {
    font-size: 3.0rem;
    background-image: linear-gradient(90deg, #ffffff, #bbbbbb); /* Gradiente de duas cores */
    -webkit-background-clip: text; /* Faz com que o gradiente afete o texto */
    color: transparent; /* Define o texto como transparente para mostrar o gradiente */
}

.experiencia{
    font-size: 1.5rem;
    background-image: linear-gradient(90deg, #ffffff, #9e9e9e); /* Gradiente de duas cores */
    -webkit-background-clip: text; /* Faz com que o gradiente afete o texto */
    color: transparent; /* Define o texto como transparente para mostrar o gradiente */
    text-align: center;
}

.titlecontact{
    font-size: 1.5rem;
    background-image: linear-gradient(90deg, #3aaaa8, #226160); /* Gradiente de duas cores */
    -webkit-background-clip: text; /* Faz com que o gradiente afete o texto */
    color: transparent; /* Define o texto como transparente para mostrar o gradiente */
    text-align: center;
}

.descricao{
    color: #ffffff;
    text-align: center;
}


.col-a h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
}

.col-b {
    flex: 1;
    display: flex;
    justify-content: center;
}

.col-b img {
    max-width: 70%;
    border-radius: 230px;
}

/* Seção 2 - Cards de Produtos */
.section-2 {
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Permite que os cards se ajustem em várias linhas */
}

a {
    display: flex; /* Faz o link ser tratado como um bloco */
    text-decoration: none; /* Remove sublinhado do link */
    color: inherit; /* Herda a cor do texto do elemento pai */
}

.card {
    border-color: #8c918e; box-shadow: 0 0 0 4px rgba(34,197,94,0.10) inset;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    padding: 20px;
    margin: 10px; /* Adiciona espaçamento entre os cards */
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    
}

.card:hover {
   transform: translateY(-2px); border-color: #2a2a2a;
}

.card img, .card video {
    width: 100%;
    border-radius: 10px;
}

.card p {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    color: #ffffff;
}

.card h2 {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    color: #ffffff;
}

.card .preco {
    display: flex; /* Usar flex para alinhar itens se necessário */
    align-items: baseline; /* Corrigir para baseline */
    font-size: large; /* Ajuste o tamanho da fonte conforme necessário */
    margin-top: 10px; /* Adiciona espaço acima do preço */
}

.card .payment {
    display: flex; /* Usar flex para alinhar itens se necessário */
    align-items: baseline; /* Corrigir para baseline */
    font-size: 15px; /* Ajuste o tamanho da fonte conforme necessário */
    margin-top: 10px; /* Adiciona espaço acima do preço */
    font-weight: 400;
    text-align: start;
}

.img2{
    width: 200px;
} 

.btn-ver{
    background-color: #ffffff;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    padding: 5px 20px 5px 20px;
    cursor: pointer;
}

.section-3 {
    background-color: #01040f;
    padding: 10px 10px;
    text-align: center;
    border-top: 5px solid #3aaaa8;
    border-bottom: 5px solid #3aaaa8;
    margin: 0 20px 0 20px;
    color: #fff;
}

.section-3-content{
    max-width: 800px;
    margin: 0 auto;
}

.plans {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding-bottom: 50px;
    }

    .plan-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      width: 300px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border: 3px solid #226160;
      transition: transform 0.3s;
    }

    .plan-card:hover {
      transform: translateY(-5px);
    }

    .plan-title {
      font-size: 1.5em;
      color: #226160;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .plan-description {
      text-align: left;
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .plan-description li {
      margin-bottom: 10px;
    }

    .historia-mensal {
      background-color: #226160;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 1em;
      border-radius: 5px;
      cursor: pointer;
    }

    .historia-anual {
      background-color: #226160;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 1em;
      border-radius: 5px;
      cursor: pointer;
    }

    .btn:hover {
      background-color: #226160;
    }

    .switch-label {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch-label input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #b1b1b1;
  transition: .4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #226160;
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.label-text {
  margin-left: 10px;
  vertical-align: middle;
  font-size: 16px;
  color: #a86c6c;
  font-weight: bold;
}

.plan-price {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 15px;
  font-weight: bold;
}

 .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.simulador {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  max-width: 250px;
  width: 100%;
  text-align: center;

}

input[type="range"] {
  width: 100%;
  margin: 20px 0;
}

.output {
  font-size: 1.2rem;
  margin-top: 10px;
}

.output span {
  color: #226160;
  font-weight: bold;
}

.img-principal{
  width: 60%;
}

.reels-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px; /* Espaço entre o iframe e o vídeo */
  background-color: #000;
  padding: 4px 0;
  flex-wrap: wrap; /* Para quebrar no mobile */
}

.reels-iframe {
  width: 540px;
  height: 490px;
  border: none;
  max-width: 100%;
}

.reels-video-wrapper {
  width: 250px; /* Largura típica de reels */
  aspect-ratio: 9 / 14.5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.reels-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btnservice{
  border: none;
  border-radius: 10px;
  padding: 8px;
  margin: 2px;
  width: auto;
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
}

/* Form (FormSubmit) */
.lead-form{
  display:flex;
  flex-direction: column;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 8px;
  align-items: center;
  justify-content: center;
  
}
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"]{
  padding:12px 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  outline:none;
  min-width: 260px;
}
.lead-form button{
  background: #3aaaa8;
  color: #fff;
  padding:12px 28px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  font-weight:700;
  flex: 0 0 auto;
}
.lead-form button:hover{ opacity:0.95; transform:translateY(-2px); transition: all .12s ease; }

.callmenow{
  padding: 10px;
}

html {
  scroll-behavior: smooth;
}


/* Responsividade para dispositivos móveis */
@media (max-width: 720px) {
    .reels-section {
    flex-direction: column;
    }
    .reels-iframe {
      width: 100%;
      height: auto;
    }
    .product-container {
        padding: 15px;
    }

    #product-name {
        font-size: 1.5rem;
    }

    #product-description {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .buy-button {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .row {
        display: flex;
        flex-direction: column; /* Muda a direção dos itens para coluna */
        align-items: center; /* Centraliza os itens */
        justify-content: center;
    }

    .col-a {
        margin-right: 0; /* Remove a margem direita em telas menores */
        margin-left: 0;
        margin-bottom: 20px; /* Adiciona margem inferior */
        align-items: center;
    }

    .col-a h1 {
        font-size: 2rem; /* Diminui o tamanho da fonte */
    }

    .col-a h2 {
        font-size: 1.1rem; /* Diminui o tamanho da fonte */
    }

    .section-2 {
        padding: 20px 0; /* Reduz o padding vertical */
    }

    .card {
        max-width: 90%; /* Aumenta a largura máxima dos cards */
    }

    .card p {
        font-size: 0.9rem; /* Diminui o tamanho da fonte do parágrafo */
    }
    .div1home{
      display: block;
    }
    h1{
      text-align: center;
    }
    h2{
      text-align: center;
    }
    .lead-form{
      justify-content: center;
    }
    .lead-form input[type="text"],
    .lead-form input[type="email"],
    .lead-form input[type="tel"]{
      padding:12px 14px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      color: var(--white);
      outline:none;
      min-width: 330px;
  }

@media (max-width: 480px) {
    .col-a h1 {
        font-size: 1.5rem; /* Diminui ainda mais o tamanho da fonte */
    }

    .col-a h2 {
        font-size: 1rem; /* Diminui ainda mais o tamanho da fonte */
    }
    .div1home{
      display: block;
    }
    h1{
      text-align: center;
    }
    h2{
      text-align: center;
    }
    .formsubmit{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .row {
        display: flex;
        flex-direction: column; /* Muda a direção dos itens para coluna */
        align-items: center; /* Centraliza os itens */
    }
}
}