html, body {
  background-color: #0d446d;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

button, input, textarea {
  font-family: "Poppins", sans-serif;
}

.landing-page {
  display: flex;
  padding-bottom: 100px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  width: calc(100% - 40px);
  padding: 0 20px;
}

@media (max-width: 991px) {
  .landing-page {
    padding-bottom: 100px;
  }
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  position: relative;
  min-height: 580px;
  padding: 30px 70px 70px 70px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero:after {
  content: '';
  position: absolute;
  background: url('img/bg.webp') bottom left repeat-x;
  width: 8000px;
  height: 1199px;
  background-size: contain;
  animation: bgAnimation 40s linear infinite;
  z-index: -1;
}

@keyframes bgAnimation {
 0% {
  transform: translateX(0px);
 } 
 100% {
  transform: translateX(-2000px);
 }
}

.hero-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid {
  gap: 20px;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 991px) {
  .hero-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 0;
}

.hero-right {
  position: relative;
  width: 50%;
}

@media (max-width: 991px) {
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .hero {
    max-width: 100%;
    min-height: 450px;
    padding: 20px 20px 50px 20px;
  }
  .hero-right {
    display: none;
  }
}

.mulher {
  position: absolute;
  top: 50%;
  left: 50%;
}

.mulher-1 {
  z-index: 2;
  transform: translate(-20%, -50%);
  animation: mulher1 10s ease-in-out infinite;
}

.mulher-2 {
  z-index: 3;
  transform: translate(-80%, 0%);
  animation: mulher2 12s ease-in-out infinite;
}

.mulher-3 {
  z-index: 1;
  transform: translate(-80%, -80%);
  animation: mulher3 9s ease-in-out infinite;
}

@keyframes mulher1 {
 0% {
  transform: translate(-20%, -50%);
 }  
 50% {
  transform: translate(-23%, -56%);
 }
 100% {
  transform: translate(-20%, -50%);
 }
}

@keyframes mulher2 {
 0% {
  transform: translate(-80%, 0%);
 }  
 40% {
  transform: translate(-78%, -5%);
 }
 100% {
  transform: translate(-80%, 0%);
 }
}

@keyframes mulher3 {
 0% {
  transform: translate(-80%, -80%);
 }  
 40% {
  transform: translate(-85%, -82%);
 }
 100% {
  transform: translate(-80%, -80%);
 }
}

.hero-text {
  position: relative;
  display: flex;
  margin-top: 40px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  font-family:
    Poppins,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 300;
}

@media (max-width: 991px) {
  .hero-text {
    max-width: 100%;
    margin-top: 20px;
  }
}

.hero-title {
  color: rgba(255, 255, 255, 1);
  font-size: 36px;
  font-weight: 700;
  line-height: 39px;
  margin: 0;
}

.font-light {
  font-weight: 300;
}

.pink-text {
  color: rgba(239, 164, 200, 1);
}

.form-title .pink-text {
  background: linear-gradient(45deg, #EFA4C8, #F8BBD9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(239, 164, 200, 0.3));
}

.white-text {
  color: rgba(255, 255, 255, 1);
}

.hero-subtitle {
  color: rgba(251, 218, 205, 1);
  font-size: 22px;
  line-height: 26px;
  margin: 22px 0 0;
  width: 306px;
  font-weight: 300;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  width: 100%;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  line-height: 39px;
  margin-top: 11px;
}

.benefit-item:first-child {
  margin-top: 0;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.benefit-text {
  margin: 0;
  flex-grow: 1;
}

.hero-form {
  width: 100%;
  margin-top: 30px;
  max-width: 480px;
}

.form-input {
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  padding: 5px 9px;
  font-size: 14px;
  color: rgba(16, 53, 84, 1);
  line-height: 26px;
  border: none;
  transition: box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 164, 200, 0.3);
}

.form-input:invalid {
  box-shadow: 0 0 0 2px rgba(255, 99, 99, 0.3);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.form-group {
  flex: 1;
}

label {
  color: #ffffff;
  font-size: 14px;
  line-height: 26px;
  display: block;
  margin-bottom: 5px;
}

.form-footer {
  display: flex;
  margin-top: 28px;
  max-width: 100%;
  align-items: stretch;
  gap: 20px;
  justify-content: flex-start;
}

.submit-button {
  border-radius: 6px;
  background-color: rgba(239, 164, 200, 1);
  padding: 8px 23px;
  font-size: 16px;
  color: rgba(16, 53, 84, 1);
  line-height: 2;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.form-note {
  color: rgba(251, 218, 205, 1);
  font-size: 12px;
  line-height: 14px;
  margin: auto 0;
}

.video-intro {
  background-color: rgba(4, 32, 55, 1);
  width: 100%;
  padding: 80px 40px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-intro-content {
  max-width: 800px;
  text-align: center;
}

.video-intro-title {
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  line-height: 39px;
  font-weight: 300;
  margin: 0;
}

.video-intro-subtitle {
  color: rgba(251, 218, 205, 1);
  font-size: 22px;
  line-height: 28px;
  margin-top: 24px;
}

.visibility {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  margin: 0 0 20px 0;
  background-color: #042037;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #042037;
}



.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw; /* 16:9 aspect ratio com margem extra */
  min-height: 120vh;
  min-width: 213.33vh; /* 16:9 aspect ratio com margem extra */
  transform: translate(-50%, -50%);
  border: none;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: opacity 0.3s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.custom-play-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.custom-play-button:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

.custom-play-button:active {
  transform: scale(0.95);
}

.custom-play-button svg {
  transition: all 0.3s ease;
}

.custom-play-button:hover svg circle {
  fill: rgba(255, 255, 255, 1);
}

.play-button-text {
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}



@media (max-width: 991px) {
  .video-intro {
    padding: 60px 20px;
    margin-top: 20px;
  }
  
  .video-intro-title {
    font-size: 28px;
    line-height: 34px;
  }
  
  .video-intro-subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
  }
  
  .visibility {
    min-height: 100vh;
  }
  
  .video-background iframe {
    width: 100vw;
    height: 177.78vw; /* Mantém proporção 9:16 para mobile */
    min-height: 100vh;
    min-width: 56.25vh;
  }
  
  .custom-play-button svg {
    width: 60px;
    height: 60px;
  }
  
  .play-button-text {
    font-size: 16px;
  }
  
  .play-button-container {
    gap: 15px;
  }
  
  .video-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #0D446D;
    z-index: 3;
    pointer-events: none;
  }
}

.difference {
  margin-top: -90px;
  width: 100%;
  max-width: 1095px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.difference:after,
.difference:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.difference:after {
  z-index: -1;
  width: 100%;
  height: 100px;
  background-color: #0d446d;
}

.difference:before {
  z-index: -2;
  background: #FFF;
  border-radius: 50%;
  width: 70%;
  height: 100%;
  filter: blur(65px);
  opacity: 0.08;
}

.difference-grid {
  display: flex;
  gap: 20px;
}

.difference-content,
.business-types {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.difference-title {
  color: rgba(255, 255, 255, 1);
  font-size: 36px;
  line-height: 39px;
  font-weight: 300;
  margin: 0;
}

.difference-subtitle {
  color: rgba(251, 218, 205, 1);
  font-size: 22px;
  line-height: 28px;
  margin-top: 22px;
}

.partners-showcase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 -120px;
  z-index: 1;
}

.partners-showcase:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 30px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  border-radius: 50%;
  filter: blur(11px);
  opacity: .3;
  z-index: -1;
}

.partners-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 34px;
}

.partner-icon {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.business-list {
  color: rgba(251, 218, 205, 1);
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  list-style: none;
}

.business-list li {
  padding: 0;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.business-list svg {
  min-width: 32px;
  height: auto;
}

@media (max-width: 991px) {
  .difference {
    margin-top: 0;
  }
  .difference-grid {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .partners-showcase {
    display: none;
  }
  .business-list {
    padding: 0;
  }
  .difference:before {
    display: none;
  }
}

.steps {
  width: 100%;
  padding: 110px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

.steps-container {
  background-color: rgba(239, 164, 200, 1);
  border-radius: 6px;
  padding: 40px 80px;
  width: 100%;
  max-width: 1196px;
  margin-bottom: -110px;
  position: relative;
  z-index: 10;
}

.steps-content {
  display: flex;
  align-items: center;
  padding: 50px 0;
}

.steps-decoration {
  width: 186px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.steps-title {
  color: rgba(16, 53, 84, 1);
  font-size: 36px;
  line-height: 39px;
  font-weight: 300;
  margin: 21px 0;
}

.steps-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
}

.steps-grid svg {
  position: absolute;
  top: -60px;
  left: 130px;
}
.steps-grid svg.inverted {
  top: auto;
  bottom: -60px;
  transform: rotate(180deg) scaleX(-1);
  left: auto;
  right: 130px;
}

.step-card {
  background-color: rgba(217, 217, 217, 0.5);
  border-radius: 6px;
  padding: 27px 20px 15px;
  width: 186px;
  height: 186px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.step-number {
  color: rgba(239, 164, 200, 1);
  font-size: 120px;
  font-family: "Racing Sans One", sans-serif;
  line-height: 1;
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 20px;
}

.step-text {
  position: relative;
  z-index: 1;
}

.step-title {
  color: rgba(16, 53, 84, 1);
  font-size: 22px;
  line-height: 39px;
  font-weight: 300;
  margin: 0;
}

.step-description {
  color: rgba(16, 53, 84, 1);
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  margin: 0;
}

.big-text {
  width: 100%;
  max-width: 1095px;
}

.big-text-grid {
  display: flex;
  align-items: center;
}
.big-tex-title {
  color: rgba(239, 164, 200, 1);
  font-size: 48px;
  line-height: 50px;
  font-weight: 300;
  margin: 0;
  width: 50%;
}
.big-tex-img {
  width: 50%;
}
.big-tex-img img {
  box-shadow: inset -70px 0 50px 0 #0d446d;
}

@media (max-width: 991px) {
  .steps-content {
    flex-direction: column;
  }
  .steps-content svg {
    display: none;
  }
  .steps-title {
    text-align: center;
  }
  .steps-content {
    padding: 0px 0;
  }
  .big-text-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .big-tex-title {
    width: 100%;
    margin-top: -60px;
    font-size: 35px;
    line-height: 40px;
  }
  .big-tex-img {
    width: 100%;
  }
  .big-tex-img img {
    width: 100%;
    height: auto;
  }
}

.testimonials {
  margin-top: 40px;
  width: 100%;
  max-width: 1203px;
}

.testimonials-grid {
  display: flex;
  gap: 20px;
}

.testimonials-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonials-title {
  color: rgba(239, 164, 200, 1);
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  margin: 24px 0 5px;
}

.testimonials-subtitle {
  color: rgba(251, 218, 205, 1);
  font-size: 22px;
  line-height: 39px;
  font-weight: 300;
  margin: 0;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 6px;
  padding: 11px 16px;
  margin-top: 21px;
  width: 489px;
  max-width: calc(100% - 40px);
  display: flex;
  gap: 20px;
}

.testimonial-avatar {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #EFA4C8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  color: rgba(16, 53, 84, 1);
  font-size: 18px;
  line-height: 31px;
  font-weight: 300;
  margin: 0;
}

.testimonial-author {
  color: rgba(239, 164, 200, 1);
  font-size: 18px;
  line-height: 31px;
  font-weight: 600;
  font-style: normal;
  display: block;
  margin-top: 5px;
}

.contact-content {
  flex: 1;
  margin-top: -10px;
}

.contact-title {
  color: rgba(239, 164, 200, 1);
  font-size: 48px;
  line-height: 50px;
  font-weight: 300;
  margin: 0;
}

.contact-form-container {
  width: 100%;
  max-width: 400px;
  margin: 10px auto 0;
  padding: 0 15px;
}

.form-title {
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.form-description {
  color: rgba(251, 218, 205, 1);
  font-size: 22px;
  line-height: 28px;
  margin: 10px 0 27px;
}

.contact-form {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.contact-form label {
  margin-top: 8px;
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-form .form-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form .form-input:focus {
  border-color: rgba(239, 164, 200, 0.8);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(239, 164, 200, 0.2);
}

.contact-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
  padding-right: 30px;
  cursor: pointer;
}

.contact-form select.form-input option {
  background: #2c3e50;
  color: white;
  padding: 8px;
}

.contact-form .form-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.contact-form .form-group {
  flex: 1;
}

.contact-form .submit-button {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  background: linear-gradient(45deg, #EFA4C8, #D48BB8);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 164, 200, 0.4);
  background: linear-gradient(45deg, #D48BB8, #EFA4C8);
}

@media (max-width: 768px) {
  .contact-form-container {
    max-width: 100%;
    padding: 0 10px;
    margin: 5px auto 0;
  }
  
  .form-title {
    font-size: 28px;
    margin: 0 0 12px 0;
  }
  
  .contact-form {
    padding: 15px;
    border-radius: 8px;
    margin: 0 auto;
  }
  
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
    margin-top: 6px;
  }
  
  .contact-form .form-input {
    padding: 10px 12px;
    font-size: 16px;
    border-radius: 4px;
  }
  
  .contact-form select.form-input {
    padding-right: 28px;
    background-size: 12px;
    background-position: right 8px center;
  }
  
  .contact-form label {
    font-size: 11px;
    margin-top: 6px;
    margin-bottom: 3px;
  }
  
  .contact-form .submit-button {
    padding: 11px;
    font-size: 14px;
    margin-top: 12px;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 0 5px;
  }
  
  .contact-form {
    padding: 12px;
  }
  
  .contact-form .form-input {
    padding: 9px 10px;
    font-size: 16px;
  }
  
  .contact-form select.form-input {
    padding-right: 25px;
    background-size: 10px;
    background-position: right 6px center;
  }
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 0;
  position: relative;
}

footer:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: .2;
}

@media (max-width: 991px) {
  .contact-title {
    font-size: 40px;
    line-height: 47px;
  }

  .contact-content {
    margin-top: 40px;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    margin-top: 16px;
  }

  .step-number {
    font-size: 40px;
  }

  .business-list {
    margin-top: 40px;
  }
}

/* ... existing code ... */

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  height: 60px;
  background: linear-gradient(45deg, #25D366, #128C7E);
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  text-decoration: none;
  color: white;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.whatsapp-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.whatsapp-title {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
}

.whatsapp-subtitle {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.2;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.1); opacity: 0; }
  100% { transform: scale(1.1); opacity: 0; }
}

/* Modal de Sucesso */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.success-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideIn 0.5s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.modal-close:hover {
  opacity: 1;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 0.6s ease;
}

.modal-title {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.whatsapp-group-btn {
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: glow 2s infinite alternate;
}

.whatsapp-group-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  text-decoration: none;
  color: white;
}

.whatsapp-group-btn svg {
  width: 24px;
  height: 24px;
}

@keyframes slideIn {
  from { 
    transform: translateY(-50px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes glow {
  from { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  to { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    transform: translateY(-50px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes glow {
  from { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  to { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8); }
}

/* Responsividade do WhatsApp */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 200px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    padding: 0 15px;
  }
  
  .whatsapp-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  
  .whatsapp-title {
    font-size: 12px;
  }
  
  .whatsapp-subtitle {
    font-size: 10px;
  }
  
  .modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .modal-title {
    font-size: 24px;
  }
  
  .modal-text {
    font-size: 14px;
  }
  
  .whatsapp-group-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}
