/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #f5f5f5;
    line-height: 1.6;
  }
  
  /* HERO SECTION */
  .hero {
    background-color: #121212;
    padding: 6rem 2rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .logo-icon {
    width: 28px;
    height: 28px;
    border: 2px solid #c4b289;
    border-radius: 50%;
    position: relative;
  }
  
  .logo-icon::before,
  .logo-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: #c4b289;
    top: 50%;
    left: 8px;
    transform: translateY(-50%) rotate(45deg);
  }
  
  .logo-icon::after {
    transform: translateY(-50%) rotate(-45deg);
  }
  
  .logo-text {
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .logo-text .inove {
    color: #fff;
  }
  
  .logo-text .vascular {
    color: #c4b289;
    margin-left: 4px;
  }
  
  .hero-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .hero-titulo .blanco {
    color: #fff;
  }
  
  .hero-titulo .dourado {
    color: #c4b289;
    text-shadow: 0 0 4px #c4b289, 0 0 8px #d8ccb3;
  }
  
  .divisor-completo {
    width: 90px;
    height: 4px;
    margin: 1.5rem auto 2rem auto;
    background: linear-gradient(to right, #c4b289, #ffffff);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(196, 178, 137, 0.4);
  }
  
  .paragrafo-justificado {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: justify;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .formulario-desktop {
    display: block;
    margin: 2rem auto;
    max-width: 500px;
  }
  
  .formulario {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .formulario input,
  .formulario button {
    padding: 0.9rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    border: none;
    outline: none;
  }
  
  .formulario input {
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
  }
  
  .formulario input::placeholder {
    color: #999;
  }
  
  .formulario button {
    background-color: #25d366;
    color: white;
    font-weight: bold;
    transition: 0.3s ease;
    cursor: pointer;
  }
  
  .formulario button:hover {
    background-color: #1ebe5d;
  }
  
  .btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  }
  
  .btn-whatsapp:hover {
    background-color: #1ebe5d;
  }
  
  .btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.2rem;
  }
  
  .mobile-only {
    display: none;
  }
  
  .social-proof {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 1.5rem;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .hero-titulo {
      font-size: 1.8rem;
    }
  
    .paragrafo-justificado {
      font-size: 1rem;
      padding: 0 1rem;
    }
  
    .formulario-desktop {
      display: none;
    }
  
    .mobile-only {
      display: inline-block;
      margin-top: 1rem;
    }
  }
  
  /* SEÇÃO: Quando Procurar */
  .quando-procurar {
    background-color: #f9f9f9;
    color: #222;
    padding: 4rem 2rem;
    text-align: left;
  }
  
  .quando-procurar h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
    text-align: center;
  }
  
  .quando-procurar p {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: #444;
    text-align: justify;
  }
  
  .sinais-lista {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .sinal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    margin-bottom: 1.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .sinal-item img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .sinal-texto h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
  }
  
  .sinal-texto p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    text-align: justify;
  }
  
  .btn-agendar {
    display: inline-block;
    margin-top: 2rem;
    background-color: #25d366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .btn-agendar i {
    margin-right: 8px;
    font-size: 1.2rem;
  }
  
  .btn-agendar:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
  }
  
  /* SEÇÃO BENEFÍCIOS */
  .beneficios {
    background-color: #fff;
    padding: 4rem 2rem;
    color: #1c1c1c;
  }
  
  .container-beneficios {
    max-width: 720px;
    margin: 0 auto;
  }
  
  .beneficios h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .beneficios h2::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #c4b289;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .numero {
    font-size: 4rem;
    font-weight: bold;
    color: #c4b289;
    font-family: 'Georgia', serif;
    opacity: 0.2;
    line-height: 1;
    margin-top: -6px;
  }
  
  .beneficio-texto h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }
  
  .beneficio-texto p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    text-align: justify;
  }
  
  @media (max-width: 600px) {
    .beneficio-item {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .numero {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
  }
  
  /* RESULTADOS */
  .resultados {
    background-color: #f1f1f1;
    padding: 4rem 2rem;
    text-align: center;
    color: #222;
  }
  
  .container-resultados {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .resultados h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    position: relative;
  }
  
  .resultados h2::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #c4b289;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .resultados p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .comparativo {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .card-resultado {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    padding: 1rem;
    text-align: center;
    transition: 0.3s ease;
  }
  
  .card-resultado:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  
  .card-resultado h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
  }
  
  .card-resultado img {
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
  }
  

  .sobre-dr {
    background-color: #fff;
    color: #222;
    padding: 4rem 2rem;
  }
  
  .container-sobre {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .sobre-dr h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .sobre-dr h2::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #c4b289;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .sobre-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .dr-foto {
    flex: 1 1 250px;
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  .dr-texto {
    flex: 2 1 450px;
  }
  
  .dr-texto p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
    color: #444;
  }
  
  .btn-sobre {
    display: inline-block;
    margin-top: 1rem;
    background-color: #25d366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .btn-sobre i {
    margin-right: 8px;
  }
  
  .btn-sobre:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
  }
  
  .redes-sociais {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
  }
  
  .redes-sociais a {
    color: #c4b289;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .redes-sociais a:hover {
    color: #a68e61;
    transform: scale(1.1);
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .sobre-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .dr-foto {
      margin-bottom: 1.5rem;
    }
  
    .dr-texto p {
      text-align: justify;
    }
  
    .redes-sociais {
      justify-content: center;
    }
  }
  

  .avaliacoes-google {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
    color: #222;
    text-align: center;
  }
  
  .container-avaliacoes {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .avaliacoes-google h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
  }
  
  .slider {
    display: flex;
    gap: 2rem;
    animation: slide 32s infinite linear;
  }
  
  .slide {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 100%;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
  }
  
  .comentario {
    font-size: 1.05rem;
    color: #333;
    font-style: italic;
    text-align: justify;
    margin-bottom: 1rem;
  }
  
  .autor {
    font-weight: bold;
    color: #444;
    text-align: right;
  }
  
  @keyframes slide {
    0% { transform: translateX(0); }
    12.5% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    37.5% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    62.5% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    87.5% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .slide { min-width: 100%; padding: 1.2rem; }
    .comentario { font-size: 1rem; }
  }
  
  
  