* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Neulis Sans";
  src: url("../fonts/Neulis-Regular.otf") format("otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Variáveis de Cores (Baseadas nas imagens) */
:root {
  --background-color-primary: #0e1c82;
  --background-color-secondary: #004fbb;
  --background-color-linear-primary: linear-gradient(
    135deg,
    #f0f5fa 0%,
    #e0e0e0 100%
  );
  --background-color-linear-secondary: linear-gradient(
    135deg,
    #26cf66 0%,
    #21c961 100%
  );
  --button-color-primary: #26cf66;
  --button-color-primary-hover: #22b85a;
  --button-color-secondary: #00e676;
  --button-color-secondary-hover: #00c853;
  --text-color-primary: #ffffff;
  --color-error: #fa697c;
  --max-width: 1200px;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  overflow-x: hidden;
  background-color: var(--background-color-linear-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

section {
  padding: 5rem;
}
section .container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 85vh;
}

p {
  font-size: 1.2rem;
  line-height: 1.3;
  color: #0b2c61;
  font-family: "Inter", Sans-serif;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  line-height: 3.8rem;
  font-family: "Inter", Sans-serif;
  color: #00308f;
}

h2 {
  font-family: "Inter", Sans-serif;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  max-width: 400px;
  color: #0049ff;
}

h3 {
  font-family: Inter;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 3rem */
}

span {
  font-size: 0.9rem;
  display: block;
  font-family: "Inter", Sans-serif;
  max-width: 420px;
  margin-bottom: 2rem;
}

.btn {
  background-color: #00c528;
  border: none;
  padding: 12px 70px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 340px;
  display: block;
  text-align: center;
}

.btn:hover {
  background-color: #00b828;
  transform: translateY(-2px);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsividade */
@media (max-width: 1100px) {
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
    text-align: center;
    line-height: 2.8rem;
  }

  h2 {
    font-size: 1.9rem;
    text-align: center;
    line-height: 2rem;
    margin: 0 auto;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.8rem;
  }

  .btn {
    display: block;
    text-align: center;
    max-width: 366px;
    margin: 0 auto;
    font-size: 14px;
    margin-bottom: 2rem;
  }
  p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
  }
  section {
    padding: 3rem 2rem;
  }
  span {
    margin-bottom: 0;
  }
}

footer {
  background-color: #0b2c61;
  padding: 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/*ANIMAÇOES*/
.animate {
  opacity: 0;
  transform: translateY(30px);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-up {
  transform: translateY(40px);
}

.animate.is-visible {
  opacity: 1;
  transform: translate(0);
  transition: all 0.8s ease;
}
/*ANIMAÇÕES*/

.thanks-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #fff, #f1f1f1);
  flex: 1;
}

.thanks-card {
  width: 100%;
  max-width: 1090px;

  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: right;
}

.thanks-text {
  max-width: 480px;
  color: #002135;
  margin-top: 2rem;
}

.thanks-text p {
  margin-bottom: 1rem;
}

.thanks-illustration img {
  max-width: 420px;
  width: 100%;
  height: auto;
}

/* Responsivo */
@media (max-width: 900px) {
  .thanks-card {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .thanks-text {
    max-width: 100%;
  }

  .thanks-illustration img {
    max-width: 300px;
    display: none;
  }
}
.phone-chat {
  position: relative;
}

@media (max-width: 900px) {
  .phone-chat svg {
    width: 420px;
    height: 420px;
  }
}

/* celular flutuando */
.phone {
  animation: floatPhone 6s ease-in-out infinite;
}

/* balões */
.bubble-top {
  animation: bubbleTop 5s ease-in-out infinite;
}

.bubble-bottom {
  animation: bubbleBottom 5s ease-in-out infinite;
}

/* pontinhos digitando */
.dot {
  animation: typing 1.4s infinite;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes floatPhone {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bubbleTop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes bubbleBottom {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes typing {
  0%,
  80%,
  100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}
