:root {
  --navy: #012e40;
  --teal: #1a8a8a;
  --teal-light: #23b0b0;
  --green: #4caf50;
  --cream: #f0ede6;
  --white: #ffffff;
  --text: #062f3d;
  --muted: #61717a;

  --radius: 28px;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  background: var(--cream);

  color: var(--text);

  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

i {
  display: inline-block;
  margin-right: 0px;
  color: var(--white);
}

.btn i{
   margin-right:10px;
}
/* ========================================
   NAVBAR
======================================== */
.navbar {
  width: 100%;

  position: fixed;
  top: 0;
  left: 0;

  z-index: 999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 7%;

  background: rgba(1, 46, 64, 0.9);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__brand img {
  width: 60px;
}

.navbar__brand h2 {
  color: white;
  font-size: 1.3rem;
}

.navbar__brand span {
  color: rgba(255, 255, 255, 0.7);

  font-size: 0.85rem;
}

.navbar__toggle {
  display: none;
  font-size: 1.6rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar__menu a {
  color: white;

  font-weight: 500;
  font-size: 0.95rem;

  transition: var(--transition);
}

.btn-nav {
  height: 52px;

  padding: 0 24px;

  border-radius: 999px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(255, 255, 255, 0.1);

  color: white;

  font-weight: 600;
}

.navbar__menu a:hover {
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;

  min-height: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;

  gap: 60px;

  padding: 90px 7% 20px;

  overflow: hidden;

  background: var(--cream);
}

.hero::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 86%;
  height: 3px;

  background: repeating-linear-gradient(
    90deg,
    #0000001a 0px,
    #0000001a 10px,
    transparent 10px,
    transparent 18px
  );
}

.hero__background {
  position: absolute;

  width: 900px;
  height: 900px;

  top: -300px;
  right: -300px;
}

.hero__content {
  position: relative;
  z-index: 5;
}

.hero__title {
  font-size: 4.5em;

  line-height: 1.05;

  font-weight: 800;

  color: var(--navy);

  margin-bottom: 30px;
}

.hero__title span {
  color: var(--teal);
}

.hero__subtitle {
  color: var(--muted);

  font-size: 1.08rem;

  line-height: 1.9;

  max-width: 620px;

  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 18px;

  margin-bottom: 50px;

  flex-wrap: wrap;
}

.btn {
  padding: 0 28px;

  height: 60px;

  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));

  color: white;

  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.103);
}

.btn--secondary {
  background: white;

  color: var(--teal);

  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.103);

  backdrop-filter: blur(10px);
}

.btn--secondary i {
  color: var(--teal);
}

.hero__numbers {
  display: flex;
  gap: 20px;

  flex-wrap: wrap;
}

.hero__number-card {
  width: 220px;

  padding: 20px;

  border-radius: 24px;

  background: white;

  backdrop-filter: blur(14px);

  transition: var(--transition);

  box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.08);
}

.hero__number-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero__number-card i {
  font-size: 1.8rem;
  color: var(--teal-light);
  margin-bottom: 18px;
}

.hero__number-card h3 {
  color: var(--navy);

  font-size: 2rem;

  margin-bottom: 10px;
}

.hero__number-card p {
  color: var(--muted);

  font-size: 0.92rem;

  line-height: 1.7;
}

/* ========================================
   HERO IMAGE
======================================== */
.hero__image-area {
  position: relative;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  min-width: 0;
}

.hero__image-area::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background: #9e9c9627;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 1;
}

.hero__image {
  position: relative;
  z-index: 5;

  width: 550px;
  height: auto;
  max-width: 100%;
  object-fit: contain;

  border-radius: 40px;

  transition: var(--transition);

  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.28));
}

.hero__image:hover {
  transform: translateY(-10px) rotate(-1deg);
}

.hero__icon {
  position: absolute;

  width: 130px;
  height: 130px;

  border-radius: 32px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(14px);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

  z-index: 2;

  animation: floatIcon 5s ease-in-out infinite;
}

.hero__icon i {
  font-size: 3.5rem;

  color: var(--teal);

  margin: 0;
}

/* POSIÇÕES */
.hero__icon--1 {
  top: 40px;
  left: -20px;
}

.hero__icon--2 {
  top: 160px;
  right: -30px;

  animation-delay: 1s;
}

.hero__icon--3 {
  bottom: 40px;
  left: 20px;

  animation-delay: 2s;
}

/* ANIMAÇÃO */
@keyframes floatIcon {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ========================================
   BENEFITS
======================================== */

.section-tag {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(35, 176, 176, 0.12);

  color: var(--teal);

  font-size: 0.82rem;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 18px;

  box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.13);
}

.section-header {
  text-align: center;
}

.section-header h2 {
  font-size: 4rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--muted);
  margin-bottom: 60px;
  line-height: 1.9;
  font-size: 1.2rem;
}

.benefits {
  padding: 120px 7%;

  position: relative;
}

.benefits h2 {
  font-size: 2.5rem;
}

.benefits p {
  font-size: 1.1rem;
}

.benefits__grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

/* CARD */
.benefit-card {
  position: relative;

  background: white;

  border-radius: 34px;

  padding: 17px;

  width: 100%;
  height: auto;

  overflow: hidden;

  transition: var(--transition);

  box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.08);
}

.benefit-card::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  background: rgba(35, 176, 176, 0.12);

  border-radius: 50%;

  top: -120px;
  right: -120px;
}

.benefit-card.active:hover {
  transform: translateY(-8px);
}

/* TOP */
.benefit-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 30px;

  position: relative;
  z-index: 2;
}

.benefit-card__top i {
  width: 70px;
  height: 70px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--teal);

  color: var(--white);

  font-size: 1.5rem;
}

.benefit-card__number {
  font-size: 3rem;

  font-weight: 800;

  color: var(--teal);
}

/* TEXT */
.benefit-card h3 {
  font-size: 1.3rem;

  margin-bottom: 18px;

  line-height: 1.2;

  position: relative;
  z-index: 2;
}

.benefit-card p {
  color: var(--muted);

  font-size: 1rem;
  line-height: 1.5;

  position: relative;
  z-index: 2;
}

/* FOOTER */
.benefit-card__footer {
  margin-top: 30px;

  position: relative;
  z-index: 2;
}

.benefit-card__footer span {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;

  border-radius: 999px;

  background: rgba(35, 176, 176, 0.08);

  color: var(--teal);

  font-weight: 600;

  font-size: 0.92rem;
}

.benefit-card__footer span i {
  color: var(--teal);
}

/* HIGHLIGHT */
.benefit-card--highlight {
  background: linear-gradient(145deg, #01384d, #012e40);

  color: white;
}

.benefit-card--highlight p {
  color: rgba(255, 255, 255, 0.75);
}

.benefit-card--highlight .benefit-card__number {
  color: rgba(255, 255, 255, 0.08);
}

.benefit-card--highlight .benefit-card__footer span {
  background: rgba(255, 255, 255, 0.08);

  color: white;
}

/* ========================================
   INFO SECTION
======================================== */

.info {
  padding: 60px 7% 100px;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 0px;
}

.info::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  top: -120px;
  right: -120px;
}

/* LEFT */
.info__left {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  max-width: none;
}

.info__left,
.info__right {
  width: 100%;
}

.info .section-tag {
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 22px;
}

.info__content {
  width: 100%;

  background: white;

  padding: 50px;

  border-radius: 40px 0 0 40px;

  box-shadow: 18px 0 20px rgba(0, 0, 0, 0.212);
}

.info__content h2 {
  font-size: clamp(1.5rem, 2vw, 2.5rem);

  line-height: 1.1;

  margin-bottom: 28px;
}

.info__content h2::after {
  content: "";

  display: block;

  width: 60px;
  height: 4px;

  background: var(--teal);

  margin-top: 18px;
}

.info__content p {
  color: var(--muted);

  font-size: 0.9rem;
  line-height: 1.9;

  margin-bottom: 18px;
}

.info__content span {
  font-weight: 600;
  color: var(--teal);
}

.info__content i {
  color: var(--teal);
}

/* MINI CARDS */
.info__mini-cards {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 30px;
}

.info__mini-card {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;

  border-radius: 18px;

  background: rgba(35, 176, 176, 0.08);

  color: var(--text);

  font-weight: 500;
}

.info__mini-card i {
  color: var(--teal);

  font-size: 1rem;
}

/* RIGHT */
.info__right {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */
.info__overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  background: linear-gradient(135deg, #126969, #1fb8b8);
  border-radius: 0px 40px 40px 0px;

  padding: 0;

  margin: 0;

  z-index: 3;
  overflow: hidden; 
  border: 15px solid var(--white);
}

.info__overlay::before {
  content: "";

  position: absolute;
  top: -50%;
  left: -120%;

  width: 40%;
  height: 200%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent 100%
  );

  transform: rotate(25deg);

  animation: shineCard 2s linear infinite;
}

@keyframes shineCard {
  0% {
    left: -120%;
  }

  100% {
    left: 160%;
  }
}

.info__overlay h3 {
  font-size: 1.5rem;
  color: var(--white);
  order: 2;
  text-align: center;
  margin-bottom: 14px;
}

.info__overlay p {
  color: var(--white);
  order: 3;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.8;
  margin: 10px;
}

.info__overlay i {
  order: 1;

  font-size: 2rem;

  background: white;

  color: var(--teal);

  width: 70px;
  height: 70px;

  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  padding: 32px;

  background: var(--navy);

  text-align: center;

  color: rgba(255, 255, 255, 0.7);
}

.footer h3 {
  color: white;
  margin-bottom: 10px;
}

.footer p {
  margin-bottom: 12px;
}

.footer span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.back-to-top {
  position: fixed;

  bottom: 30px;
  right: 30px;

  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: var(--teal);

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: var(--shadow);

  transition: 0.3s ease;

  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.08);
}

/* ========================================
   REVEAL ANIMATION
======================================== */

.benefit-card,
.info__content,
.info__right,
.hero__content,
.hero__image-area {
  opacity: 0;

  transform: translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.benefit-card.active,
.info__content.active,
.info__right.active,
.hero__content.active,
.hero__image-area.active {
  opacity: 1;

  transform: translateY(0);
}

.hero,
.benefits,
.info {
  overflow: hidden;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1024px) {
  /* ================= GLOBAL AJUSTE ================= */
  .section-header h2 {
    font-size: 3rem;
  }

  .section-header p {
    font-size: 1.05rem;
    margin-bottom: 40px;
  }

  /* ================= NAVBAR ================= */
  .navbar {
    padding: 16px 6%;
  }

  .navbar__menu {
    gap: 16px;
  }

  .navbar__menu a {
    font-size: 0.9rem;
  }

  .btn-nav {
    height: 48px;
    padding: 0 18px;
  }

  /* ================= HERO ================= */
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 100px 6% 40px;
  }

  .hero__title {
    font-size: 3.4rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero__number-card {
    width: 200px;
  }

  .hero__image {
    width: 460px;
  }

  .hero__icon {
    width: 100px;
    height: 100px;
  }

  .hero__icon i {
    font-size: 2.6rem;
  }

  /* ================= BENEFITS ================= */
  .benefits {
    padding: 90px 6%;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .benefit-card {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  .benefit-card h3 {
    font-size: 1.5rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }

  .benefit-card__number {
    font-size: 2.6rem;
  }

  /* ================= INFO ================= */
  .info {
    padding: 80px 6%;
    gap: 40px;
  }

  .info__left {
    left: 0;
    max-width: 100%;
  }

  .info__content {
    padding: 35px;
  }

  .info__mini-cards {
    justify-content: center;
  }

  .info__right {
    position: relative;
    width: 100%;
    height: 460px;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 20px;
  }

  .info__overlay {
    padding: 25px;
  }

  .info__overlay h3 {
    font-size: 1.4rem;
  }

  .info__overlay p {
    font-size: 0.95rem;
  }

  .hero,
  .benefits,
  .info {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  /* NAVBAR */
  .navbar {
    padding: 16px 5%;
    justify-content: space-between;
  }

  .navbar__brand {
    gap: 10px;
  }

  .navbar__brand img {
    width: 46px;
  }

  .navbar__brand h2 {
    font-size: 1.1rem;
  }

  .navbar__brand span {
    font-size: 0.72rem;
  }

  .navbar__toggle {
    display: block;
    font-size: 1.8rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
  }

  .navbar__menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(1, 46, 64, 0.98);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: 0.35s ease;
  }

  .navbar__menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar__menu a {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.95rem;
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
  }

  /* HERO */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    padding: 50px 5% 40px;
  }

  .hero__content {
    order: 2;
    margin-top: -50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    max-width: 700px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
  }

  .btn {
    width: 100%;
  }

  .hero__numbers {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero__number-card {
    width: 90%;
    max-width: 550px;
  }

  .hero__image-area {
    order: 1;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -30px;
  }

  .hero__image-area::before {
    margin: 0 auto;
    width: 30vh;
    height: 30vh;
  }

  .hero__image {
    width: 260px;
    max-width: 100%;
    position: relative;
    z-index: 3;
  }

  .hero__icon {
    width: 70px;
    height: 70px;
  }

  .hero__icon i {
    font-size: 1.8rem;
  }

  .hero__icon--1 {
    top: 100px;
    left: 17%;
  }

  .hero__icon--2 {
    top: 15vh;
    right: 20%;
  }

  .hero__icon--3 {
    bottom: 60px;
    left: 19%;
  }

  /* BENEFITS */
  .benefits {
    padding: 50px 5% 50px;
  }

  .benefits__grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .benefit-card {
    width: 78% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  /* REMOVE comportamento que desloca cards */
  .benefit-card:last-child {
    grid-column: auto !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .benefit-card {
    width: 65% !important;
    max-width: 100%;
    height: 90% !important;
    margin: 0 auto;
  }

  .benefit-card h3 {
    font-size: 1.5rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
    margin-bottom: -10px;
  }

  .benefit-card__number {
    font-size: 2.5rem;
  }

  .benefit-card i {
    font-size: 1.3rem;
    width: 60px;
    height: 60px;
  }

  .benefit-card__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 30px;
  }

  .benefit-card__footer span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    line-height: 1;
    padding: 10px 10px;
    margin: 0 auto;
    background: rgba(35, 176, 176, 0.08);
    border-radius: 999px;
  }

  .benefit-card__footer i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 18px;
    height: 18px;
    margin: 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .section-tag {
    text-align: center;
  }

  /* INFO */
  .info {
    padding: 50px 7% 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 35px;
  }

  .info__left {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    left: 0 !important;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    order: 1;
  }

  .info__left .section-tag {
    text-align: center;
    margin: 0 auto 20px;
  }

  .info__content {
    padding: 22px;
    border-radius: 40px;
  }

  .info__mini-card {
    padding: 5px 8px;
    font-size: 0.7rem;
    border-radius: 999px;
  }

  .info__mini-cards {
    justify-content: center;
  }

  .info__text--more {
    display: none;
  }

  .info__right {
    order: 2;
    left: 0 !important;
    margin: 0 auto;
    bottom: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: none;
    top: auto;
    right: auto;
  }

  .info__image {
    width: 90%;
    height: 70%;
    object-fit: cover;
  }

  .info__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 17px;
    border-radius: 40px;
    width: 90% !important;
    margin: 0 auto;
    height: 35vh !important;
  }

  .info__overlay i {
    font-size: 2rem;
    color: var(--teal);
    margin: 0 auto;
    margin-top: 10% !important;
    order: 1;
    background: rgba(255, 255, 255, 0.575);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    align-self: center;
  }

  .info__overlay h3 {
    display: none;
  }

  .info__overlay p {
    display: none;
  }

  /* FOOTER */
  .footer {
    padding: 20px;
  }

  .footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .footer p {
    font-size: 0.85rem;
    color: var(--muted);
    white-space: nowrap;
  }

  .footer span {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 10px;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
  }

  .back-to-top:active {
    transform: scale(0.92);
  }
}

/* ========================================
   CELULAR PEQUENO (até 480px)
======================================== */
@media (max-width: 480px) {
  .navbar {
    padding: 16px 5%;
  }

  .navbar__brand {
    gap: 10px;
  }

  .navbar__brand img {
    width: 46px;
  }

  .navbar__brand h2 {
    font-size: 1.1rem;
  }

  .navbar__brand span {
    font-size: 0.72rem;
  }

  .navbar__toggle {
    display: block;
  }

  .navbar__menu {
    position: absolute;

    top: 80px;
    left: 0;
    right: 0;

    background: rgba(1, 46, 64, 0.98);

    flex-direction: column;
    align-items: center;

    gap: 20px;

    padding: 20px 0;

    opacity: 0;

    transform: translateY(-20px);

    pointer-events: none;

    transition: 0.35s ease;
  }

  .navbar__menu.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);
  }

  .navbar__menu a {
    width: 100%;

    text-align: center;

    padding: 12px;

    font-size: 0.95rem;
  }

  .btn-nav {
    width: 100%;

    justify-content: center;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 90%;
  }

  .hero__image {
    width: 260px;
  }

  .hero__number-card {
    width: 90%;
  }

  .hero__image-area {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero__icon {
    width: 70px;
    height: 70px;
  }

  .hero__icon i {
    font-size: 1.8rem;
  }

  .hero__icon--1 {
    top: 100px;
    left: 10px;
  }

  .hero__icon--2 {
    top: 20vh;
    right: -3px;
  }

  .hero__icon--3 {
    bottom: 60px;
    left: 30px;
  }

  .hero__image-area::before {
    margin: 0 auto;
    width: 40vh;
    height: 40vh;
  }

  .benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  /* REMOVE O LAYOUT DO TABLET */
  .benefit-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* CARDS */
  .benefit-card {
    width: 78% !important;
    max-width: 100%;
    height: 90%;

    margin: 0 auto;
  }

  .benefit-card h3 {
    font-size: 1.3rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
    margin-bottom: -10px;
  }

  .benefit-card__number {
    font-size: 2.5rem;
  }

  .benefit-card i {
    font-size: 1.3rem;
    width: 60px;
    height: 60px;
  }

  .benefit-card__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;

    margin-bottom: 30px;
  }

  .benefit-card__footer span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-size: 0.75rem;
    line-height: 1;

    padding: 10px 10px;
    margin: 0 auto;

    background: rgba(35, 176, 176, 0.08);
    border-radius: 999px;
  }

  .benefit-card__footer i {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;
    width: 18px;
    height: 18px;

    margin: 0;
    /* importante */
  }

  .benefits {
    padding: 60px 5%;
  }

  .info {
    padding: 10px 5% 200px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .info__content {
    padding: 22px;
    border-radius: 40px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.342);
  }

  .info__mini-card {
    padding: 5px 8px;
    font-size: 0.7rem;
    border-radius: 999px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .info__text--more {
    display: none;
  }

  .section-tag {
    text-align: center;
  }

  .info__left .section-tag {
    text-align: center;
    margin: 0 auto 20px;
  }

  .info__left {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    left: 0 !important;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    order: 1;
  }

  .info__right {
    order: 2;
    width: 100%;
    height: 60%;
    padding: 16px;
    left: 0 !important;
    margin: 0 auto;
    bottom: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 17px;
    border-radius: 40px;
    opacity: 0.5;
  }

  .info__overlay i {
    font-size: 7rem;
    color: var(--teal);
    margin: 0 auto;
    order: 1;
    background: rgb(255, 255, 255);
    width: 25vh;
    height: 25vh;
    border-radius: 50%;
    align-self: center;
  }

  .info__overlay h3 {
    display: none;
  }

  .info__overlay p {
    display: none;
  }

  .footer {
    padding: 20px;
  }

  .footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .footer p {
    font-size: 0.85rem;
    color: var(--muted);
    white-space: nowrap;
  }

  .footer span {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 10px;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
  }

  .back-to-top:active {
    transform: scale(0.92);
  }
}
