
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
#btnSom {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #0d6efd;  /* azul bootstrap */
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

#btnSom:hover {
  background-color: #0847c2; /* azul mais escuro */
  box-shadow: 0 6px 15px rgba(8, 71, 194, 0.5);
}

#btnSom:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
}

.video-hero {
  width: 100%;       /* ocupa toda a largura da coluna */
  max-width: 400px;  /* limite máximo para ficar proporcional */
  height: auto;
  max-height: none;
  object-fit: contain; /* para manter proporção sem cortar */
  margin: 0 auto;    /* centralizar horizontalmente */
}

/* Em telas pequenas (mobile) */
@media (max-width: 767.98px) {
  .video-hero {
    max-width: 100%; /* ocupar todo o espaço possível no mobile */
  }
}
/* Definindo as fontes */
@font-face {
    font-family: 'Glasgow';
    src: url('../fonts/glasgow/glaw.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Glasgow';
    src: url('../fonts/glasgow/glawb.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Glasgow';
    src: url('../fonts/glasgow/glawi.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Glasgow';
    src: url('../fonts/glasgow/glawbi.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #ffc107;
    --secondary-hover: #ffca2c;
    --success: #198754;
    --dark-blue: #0d3b66;
    --light-blue: #f0f7ff;
}

body {
    font-family: 'Glasgow', sans-serif;
    color: #333;
}

.hero-section {
    background: linear-gradient(to right, #0d6efd, #0a4bc5);
    color: white;
    padding: 5rem 0;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.highlight {
    color: #ffc107;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    color: var(--primary);
    font-size: 1.75rem;
}

.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    height: 100%;
}

.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.bonus-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 0.5rem;
    padding: 2rem;
    height: 100%;
}

.bonus-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.pricing-card {
    background: linear-gradient(to right, #f0f7ff, #e6f0ff);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offer-box {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.guarantee-box {
    background-color: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: #f0f7ff;
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.cta-section {
    background-color: var(--dark-blue);
    color: white;
    padding: 5rem 0;
}

.soap-bubbles {
    position: relative;
    width: 100%;
    height: 100px; /* Altura para as bolhas subirem */
    margin-top: -60px;
    pointer-events: none;
  }
  
  .soap-bubbles span {
    position: absolute;
    bottom: -100px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: bubble linear infinite;
  }
  
  .soap-bubbles span:nth-child(1) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-duration: 8s;
    animation-delay: 0s;
  }
  
  .soap-bubbles span:nth-child(2) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-duration: 6s;
    animation-delay: 2s;
  }
  
  .soap-bubbles span:nth-child(3) {
    left: 30%;
    width: 25px;
    height: 25px;
    animation-duration: 10s;
    animation-delay: 4s;
  }
  
  .soap-bubbles span:nth-child(4) {
    left: 40%;
    width: 10px;
    height: 10px;
    animation-duration: 7s;
    animation-delay: 1s;
  }
  
  .soap-bubbles span:nth-child(5) {
    left: 50%;
    width: 20px;
    height: 20px;
    animation-duration: 9s;
    animation-delay: 3s;
  }
  
  .soap-bubbles span:nth-child(6) {
    left: 60%;
    width: 15px;
    height: 15px;
    animation-duration: 8s;
    animation-delay: 0s;
  }
  
  .soap-bubbles span:nth-child(7) {
    left: 70%;
    width: 10px;
    height: 10px;
    animation-duration: 6s;
    animation-delay: 5s;
  }
  
  .soap-bubbles span:nth-child(8) {
    left: 80%;
    width: 25px;
    height: 25px;
    animation-duration: 11s;
    animation-delay: 2s;
  }
  
  .soap-bubbles span:nth-child(9) {
    left: 85%;
    width: 15px;
    height: 15px;
    animation-duration: 7s;
    animation-delay: 4s;
  }
  
  .soap-bubbles span:nth-child(10) {
    left: 90%;
    width: 20px;
    height: 20px;
    animation-duration: 10s;
    animation-delay: 1s;
  }
  .soap-bubbles span:nth-child(11) {
    left: 100%;
    width: 20px;
    height: 20px;
    animation-duration: 10s;
    animation-delay: 1s;
  }
  
  .soap-bubbles span:nth-child(12) {
    left: 110%;
    width: 15px;
    height: 15px;
    animation-duration: 8s;
    animation-delay: 2s;
  }
  .soap-bubbles span:nth-child(13) {
    left: 120%;
    width: 20px;
    height: 20px;
    animation-duration: 9s;
    animation-delay: 3s;
  }
  .soap-bubbles span:nth-child(14) {
    left: 130%;
    width: 15px;
    height: 15px;
    animation-duration: 8s;
    animation-delay: 2s;
  }
  .soap-bubbles span:nth-child(15) {
    left: 140%;
    width: 20px;
    height: 20px;
    animation-duration: 10s;
    animation-delay: 1s;
  }
  

  @keyframes bubble {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0.8;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translateY(-100px) scale(1.5);
      opacity: 0;
    }
  }

.btn-cta {
    background-color: var(--secondary);
    color: var(--dark-blue);
    font-weight: bold;
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
    border: none;
    transition: all 0.3s ease;
    
    /* Adiciona animação */
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
  }
  
  /* Remove a animação ao passar o mouse */
  .btn-cta:hover {
    animation: none;
    background-color: var(--secondary-hover);
    transform: scale(1.05);
  }
  
  /* Animação pulse */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0.4);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 20px rgba(var(--secondary-rgb), 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0);
    }
  }

.btn-success-cta {
    background-color: var(--success);
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border: none;
    transition: all 0.3s ease;
}

.pulse-button {
    font-size: 1.3em;
    font-weight: 300; /* ao invés de 'light' */
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -1px;
    color: white;
    border: none;
    background: #146c43;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(20, 108, 67, 0.5);
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    animation: pulse 1.5s infinite;
  }
  
  .pulse-button:hover {
    animation: none;
  }
  
  /* Animação com prefixo e sem prefixo */
  @keyframes pulse {
    0% {
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(20, 108, 67, 0.5);
    }
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 50px rgba(20, 108, 67, 0);
    }
    100% {
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(20, 108, 67, 0);
    }
  }
  
  /* Para compatibilidade com navegadores mais antigos */
  @-webkit-keyframes pulse {
    0% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(20, 108, 67, 0.5);
    }
    70% {
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 0 50px rgba(20, 108, 67, 0);
    }
    100% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(20, 108, 67, 0);
    }
  }

.btn-success-cta:hover {
    background-color: #146c43;
    transform: scale(1.05);
    color: white;
}

footer {
    background-color: #343a40;
    color: #adb5bd;
    padding: 2rem 0;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.author-img-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .author-img-large {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }
}

