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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

img {
  width: 100%;
  height: auto;
}

/*====  VARIABLES ============================ */
:root {
  --header-height: 4.5rem;

  /* colors */
  --hue: 159;
  /* HSL color mode */
  --brand-blue: #26477c;
  --hover-brand-blue: #0d3a83;
  --brand-blue-light: #47b2e6;
  --text-color-light: hsl(0 0% 98%);
  --body-color: #f7f7f7;

  --gradient: linear-gradient(
    272.81deg,
    rgba(38, 71, 124, 0.82) 10.75%,
    #26477c 58.84%
  );

  /* fonts mobile */
  --title-font: 2rem;
  --secondary-title-font: 1rem;
  --subtitle-font: 0.9rem;

  /* fonts desktop  */
  --title-fontD: 2.5rem;
  --secondary-title-fontd: 1.2rem;

  --radius: 0.5rem;

  --margin: 1.4rem;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}

body {
  font: 400 1rem var(--body-font);
  color: var(--brand-blue);
  background: var(--body-color);
  font-family: 'Poppins', sans-serif;
}

/* ===== HEADER ===== */
.header {
  color: var(--brand-blue);
}

.divider-1 {
  height: 1px;
  background: linear-gradient(
    270deg,
    hsla(var(--hue), 65%, 88%, 0.34),
    hsla(var(--hue), 36%, 57%, 1)
  );
}

/* ===== TITLE ===== */
.titleHeader h1 {
  font-size: var(--title-font);
  margin-bottom: var(--margin);
  font-weight: 700;
  line-height: 2.5rem;
  text-align: center;
}

.titleHeader span {
  font-weight: 700;
  color: var(--brand-blue-light);
}

.titleHeader p {
  font-size: 1rem;
  margin-bottom: var(--margin);
  line-height: 1.5rem;
  color: var(--brand-blue);
  text-align: center;
}
/* ========== */

p {
  line-height: 1.5rem;
}

.buttons {
  background-color: var(--brand-blue);
  color: var(--body-color);
  height: 3rem;
  width: 15rem;

  display: grid;
  place-items: center;

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

  filter: drop-shadow(0px 4px 4px rgba(37, 68, 119, 0.25));

  border: none;
  border-radius: var(--radius);

  cursor: pointer;
}
.buttons:hover {
  background-color: var(--brand-blue-light);
}

/* ===== LAYOUT ===== */
.wrapper {
  width: min(45rem, 100%);

  margin-left: 1.5rem;
  margin-inline: auto;

  padding-inline: 1.5rem;
}

.section {
  padding: calc(0.5rem + var(--header-height)) 0;
}

#header {
  margin-bottom: 2rem;
  display: flex;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--body-color);
  width: 100%;
}

#header .logoazul {
  display: flex;
  width: 9rem;
}

#header.scroll {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  background-color: var(--brand-blue);
}

#header.scroll .logoazul img {
  display: none;
}

#header .logo img {
  display: none;
}

#header.scroll .logo img {
  display: flex;
  width: 9rem;
}
#header.scroll .toggle.icon-menu svg {
  stroke: #ffffff;
}

#header.scroll .title-menu {
  color: var(--body-color);
  font-size: 1rem;
}

#header.scroll nav .menu .buttons {
  background: var(--body-color);
  color: var(--brand-blue);
  font-weight: 700;
}

#header.scroll nav .menu .buttons:hover {
  background-color: var(--brand-blue-light);
  color: var(--body-color);
}

/* ===== NAVIGATION ===== */
nav {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

nav ul li {
  text-align: center;
}

nav ul li a {
  transition: color 0.2s;
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--brand-blue);
}

nav ul li a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--brand-blue);

  position: absolute;
  left: 0;
  bottom: -1.5rem;

  transition: width 0.2s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

#header.scroll nav ul li a::after,
#header.scroll nav ul li a:hover::after {
  background-color: var(--body-color);
}

nav .menu {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  top: -20rem;
  transition: 0.2s;
  display: flex;
  justify-content: right;
}

.title-menu {
  color: var(--brand-blue);
  font-size: 1rem;
}

nav .menu ul {
  display: none;
}

/* ===== MOSTRAR MENU ===== */
nav.show .menu {
  opacity: 1;
  visibility: visible;

  background: var(--brand-blue);

  height: 100vh;
  width: 100vw;

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

  display: grid;
  place-content: center;
}

nav.show .title-menu {
  color: white;
}

nav.show .menu ul {
  display: grid;
}

nav.show ul.grid {
  gap: 4rem;
}

.grid :nth-child(3) {
  display: none;
}

nav.show .menu .buttons {
  background: var(--body-color);
  color: var(--brand-blue);
}

/* ===== MENU ===== */
.toggle {
  color: var(--brand-blue);
  font-size: 1.5rem;
  cursor: pointer;
}

nav .icon-close {
  visibility: hidden;
  opacity: 0;

  position: absolute;
  top: -1.5rem;
  right: 1.5rem;

  transition: 0.2s;
  color: var(--brand-blue);
}

nav.show div.icon-close {
  visibility: visible;
  opacity: 1;
  color: var(--body-color);
  top: 1.5rem;
}

/* ===== HOME ===== */
#home {
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column-reverse;
}

#home .container {
  width: 100%;
  height: 50%;

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

#home .container .info img {
  height: 20rem;
  width: 25rem;

  position: absolute;
}

#home .container .info img:nth-child(2) {
  animation: bounce 2s infinite alternate;
  -webkit-animation: bounce 2s infinite alternate;
}

#home .container .info img:nth-child(3) {
  height: 10rem;
  width: 10rem;

  top: 50%;
  animation: bounce 2s infinite alternate;
  -webkit-animation: bounce 2s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-10px);
  }
}

#home .info {
  height: 40vh;
  display: grid;
  place-items: center;
}
#home .titleHeader h1 {
  font-size: 2.4rem;
}

#home .titleHeader p {
  font-size: 1.2rem;
  color: var(--brand-blue);
  margin-bottom: var(--margin);
}

#home .details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

#home .details a {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.5rem;

  font-size: 1rem;
}

/* ===== ABOUT ===== */
#about .details h2 {
  font-size: var(--secondary-title-font);
  color: var(--brand-blue-light);
  width: 80%;
}

#about .details p {
  font-size: 1rem;
  color: var(--brand-blue);
}

#about .side .title p {
  text-align: center;
}

#about .cards {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 2rem;

  margin: 5rem 0 5rem 0;
}

#about .card {
  background-color: var(--body-color);

  max-width: 18rem;
  width: 100%;
  height: 24rem;

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

  background: #ffffff;
  box-shadow: -8px 8px 20px -10px rgba(0, 0, 0, 0.75);
  border-radius: var(--radius);

  padding: 1.5rem;
}

#about .card .img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .card .img::after {
  content: "";
  height: 5rem;
  width: 5rem;
  background-color: #47b1e646;

  border-radius: 50%;

  position: absolute;

  margin-left: -3rem;
}

#about .details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#about .details p{
  font-weight: 400;
  font-size: .9rem;
}

#about .button {
  width: 100%;

  display: flex;
  justify-content: end;
}

#about .button a {
  background-color: var(--brand-blue-light);
  height: 2.5rem;
  width: 2.5rem;

  border-radius: 50%;

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

/* ===== START ===== */
#start {
  background: var(--gradient);
}
#start .titleHeader h1,
#start .titleHeader p {
  text-align: center;
  color: var(--body-color);
}

#start .details-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

#start .details-button .buttons {
  background-color: var(--body-color);
  color: var(--brand-blue);
}
#start .details-button .buttons:hover {
  background-color: var(--brand-blue-light);
  color: var(--body-color);
}

/* ===== INTEGRATION ===== */
#integration .sidesIntegration .img {
  display: none;
}

#integration .integration .titleHeader h1 {
  font-size: 2.5rem;
}

#integration .integration .titleHeader p {
  font-size: 0.9rem;
  line-height: 1.5rem;
}

#integration .integration {
  width: 100%;
  height: 100%;

  padding: 3rem;
}

#integration .integration ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#integration .integration ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

#integration .integration .button {
  display: grid;
  place-items: center;
}

#integration .integration .button a {
  width: 100%;
  max-width: 20rem;
  height: 4rem;

  background: #00ff77;
  color: var(--body-color);
  box-shadow: 0px 20px 35px rgba(0, 255, 119, 0.21);

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

  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 700;

  margin-top: 3rem;

  border-radius: var(--radius);

  gap: 1rem;
}

#integration .integration .button a:hover {
  background-color: #19f780;
  box-shadow: none;
}

#integration .integration .button a img {
  height: 1.5rem;
  width: 1.5rem;
}

/* ===== HOW ===== */
#how .cards {
  height: 100%;
  width: 100%;

  display: grid;
  place-items: center;
  gap: 2rem;

  grid-template-columns: 1fr;

  margin: 5rem 0 5rem 0;
}

#how .cards .card {
  width: 18rem;
  height: 24rem;

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

  padding: 1.5rem;
  border-radius: var(--radius);
  border: 0.1rem solid #0d3a839d;
}

#how .cards .card .img {
  height: 50%;

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

#how .cards .card .details {
  margin-top: 1rem;
  height: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;

  text-align: center;
  gap: 1.5rem;
}

#how .cards .card .details h2 {
  font-size: var(--secondary-title-font);
}

#how .cards .card .details p {
  font-size: var(--subtitle-font);
  line-height: 1.5rem;
  color: var(--brand-blue);
}

/* ===== PLANOS ===== */
@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

#planos .cards {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;

  gap: 2rem;

  margin: 5rem 0 5rem 0;
}

#planos .cards .card {
  background-color: #ffffff;
  height: 100%;
  width: 20rem;

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

  text-align: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);

  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
}
#planos .cards .card:hover {
  scale: 1.1;
}

#planos .cards .card .title {
  width: 100%;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#planos .cards .card .title h1 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

#planos .cards .card .title h1 span {
  color: var(--brand-blue-light);
  font-size: 2rem;
}

#planos .cards .card .divider-card {
  width: 100%;
  height: 0.1rem;
  background: #0d3a8362;
}

#planos .cards .card ul {
  width: 80%;
  text-align: left;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#planos .cards .card ul li {
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
}

#planos .cards .card.active {
  background-color: var(--brand-blue);
}

#planos .cards .card.active .title h1 {
  color: var(--body-color);
}

#planos .cards .card.active p {
  color: var(--body-color);
}

#planos .cards .card.active ul {
  color: var(--body-color);
}

#planos .cards .card.active ul li svg {
  stroke: #f7f7f7;
}

#planos .cards .card.active .divider-card {
  width: 100%;
  height: 0.1rem;
  background: #ffffff62;
}

/* ===== MORE ===== */
#planos .more {
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid #0d3a83;
}

#planos .more .titleHeader {
  padding: 1.5rem;
  min-height: 20rem;
  text-align: left;
}
#planos .more .titleHeader h1 {
  text-align: left;
}

#planos .more .titleHeader p {
  text-align: left;
  font-size: 1.3rem;
}

#planos .more div:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: start;
}

#planos .more .buttons {
  background: none;
  border: 1px solid #0d3a83;
  margin-bottom: 2rem;

  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;

  cursor: pointer;
}

#planos .more .buttons:hover {
  scale: 1.1;
}

#planos .more .img {
  display: flex;
  align-items: center;
  justify-content: center;
}
#planos .more .img img {
  max-height: 30rem;
  max-width: 30rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--brand-blue);
}

footer .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

footer .wrapper div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
footer .wrapper div h2 {
  line-height: 1.5rem;
}

footer .wrapper div .links {
  width: 80%;
  display: flex;
  flex-direction: row;
}

footer .wrapper div:nth-child(1) {
  margin-top: 2.5rem;
}

footer .wrapper .product-by {
  margin-bottom: 1rem;
}

footer.section {
  padding: 4rem 0;
}

footer img {
  width: 10rem;
}

footer h2 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
}

footer .links a svg {
  height: 1.5rem;
  width: 1.5rem;
}

footer .links a svg:hover {
  scale: 1.1;
}

.button-whatsapp .whatsapp a {
  background-color: #27d468;
  height: 4rem;
  width: 4rem;

  position: fixed;
  border-radius: 50%;

  right: 1rem;
  bottom: 5.5rem;
  line-height: 0;

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

  padding: 0.5rem;

  cursor: pointer;

  box-shadow: -5px 5px 12px rgba(0, 0, 0, 0.15);

  -webkit-animation: whatsapp 1s ease infinite;
  animation: whatsapp 1s ease infinite;
}

@-webkit-keyframes whatsapp {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

.button-whatsapp .whatsapp a:hover {
  background-color: #1c9148;
}

.button-whatsapp .whatsapp a img {
  height: 2.5rem;
  width: 2.5rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  background: var(--brand-blue);
  color: var(--text-color-light);
  height: 4rem;
  width: 4rem;

  position: fixed;
  right: 1rem;
  bottom: 1rem;

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

  padding: 0.5rem;
  border-radius: 50%;

  line-height: 0;

  visibility: hidden;
  opacity: 0;

  transition: 0.3s;
  transform: translateY(100%);
}

.back-to-top svg {
  height: 2.5rem;
  width: 2.5rem;
}

.back-to-top svg:hover {
  transform: rotate(-45deg);
  transition: 0.3s;
}

.back-to-top.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .wrapper {
    width: min(55rem, 100%);
  }

  /* ===== HOME ===== */
  #home .container .info img {
    height: 25rem;
    width: 34rem;
  }

  #home .container .info img:nth-child(3) {
    height: 15rem;
    width: 15rem;
    right: 35%;
    top: 45%;
    animation: bounce 2s infinite alternate;
    -webkit-animation: bounce 2s infinite alternate;
  }

  /* ===== ABOUT ===== */
  #about .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
    gap: 2rem;
  }

  #about .cards .card {
    height: 23rem;
    padding: 2rem 1rem 2rem 1rem;
  }

  /* ===== HOW ===== */
  #how .cards {
    gap: 4rem;
    padding: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  #how .cards .card {
    width: 100%;
  }

  #how .cards .card .img {
    height: 9rem;
    width: 9rem;
  }

  #how .cards .card .details h2 {
    font-size: 1.3rem;
  }

  #how .cards .card .details p {
    font-size: 1rem;
  }

  .container {
    height: 50vh;
  }

  .form::after {
    height: 25rem;
    width: 25rem;
    top: 4rem;
  }

  /* ===== PLANOS ===== */
  #planos .cards {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
  }

  #planos .cards .card {
    height: 100%;
    width: 100%;
    max-width: 16rem;

    padding: 1.5rem;
  }

  #planos .cards .card .title h1 {
    font-size: 1.3rem;
  }

  #planos .cards .card ul {
    width: 100%;
  }

  /* ===== MORE ===== */
  #planos .more {
    height: 100%;
    width: 100%;

    display: flex;
    align-items: center;
    flex-direction: row;
  }

  #planos .more .titleHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1100px) {
  .wrapper {
    width: min(80rem, 100%);
  }

  .titleHeader h1 {
    font-size: var(--title-fontD);
    line-height: 3rem;
    text-align: left;
  }

  .titleHeader p {
    font-size: var(--secondary-title-fontd);
    line-height: 2rem;
    text-align: left;
  }

  /* ===== NAVIGATION ===== */
  nav .menu {
    opacity: 1;
    visibility: visible;
    top: 0;
  }

  nav .menu ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--body-color);
  }

  nav .menu ul li a.title {
    font: 400 1rem var(--body-font);
    -webkit-font-smoothing: antialiased;
  }

  nav .menu ul li a.title.active {
    font-weight: bold;
    -webkit-font-smoothing: auto;
  }

  nav .icon-menu {
    display: none;
  }

  /* ===== HOME ===== */
  #home .wrapper {
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  #home .wrapper .info {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
  }

  #home .titleHeader h1 {
    font-size: 5rem;
    text-align: left;
    line-height: 5rem;
  }

  #home .titleHeader p {
    width: 80%;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
  }

  #home .details {
    align-items: start;
  }

  #home .container {
    width: 100%;
    height: 100%;
  }

  /* ===== ABOUT ===== */
  #about .titleHeader {
    width: 50%;
  }
  #about .titleHeader h1 {
    width: 50%;
    text-align: left;
  }

  #about .titleHeader p {
    width: 90%;
    text-align: left;
  }

  #about .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    gap: 1rem;
  }

  #about .wrapper .side {
    width: 60%;
  }

  #about .cards {
    gap: 1rem;
    margin: 0 0 0 0;
  }

  #about .side .title {
    padding: 2rem 0 0 2rem;
    height: 10rem;
    display: flex;
    align-items: flex-end;
  }

  #about .side .title p {
    font-size: var(--secondary-title-fontd);
    line-height: 1.5rem;
  }

  #about .card {
    margin-top: 2rem;
    max-width: 15rem;
    width: 100%;
    height: 20rem;

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

    background: transparent;
    box-shadow: 0px 0px 0px;

    padding: 0 1rem 0 1rem;
    gap: 0;
  }

  #about .card img .lord-icon {
    width: 100px;
    height: 100px;
  }

  #about .card:hover {
    height: 21rem;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;

    background: var(--body-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
    border-radius: 2rem;
    gap: 0;

    padding: 0 1rem 0 1rem;
    transition: transform 150ms ease-in-out;

    transform: scale(1.2);
  }

  #about .card .img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #about .card .img::after {
    content: "";
    height: 5rem;
    width: 5rem;
    background-color: #47b1e646;

    border-radius: 50%;

    position: absolute;

    margin-left: -3rem;
  }

  #about .card:hover .details {
    margin-top: -1.5rem;
  }

  #about .card .details p {
    display: none;
  }

  #about .details h2 {
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  #about .card:hover .details p {
    display: block;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1rem;
  }

  #about .card:hover .details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* ===== INTEGRATION ===== */
  #integration .sidesIntegration {
    display: flex;
    height: 100%;
  }

  #integration .sidesIntegration .img {
    display: block;
    position: relative;
    width: 50%;

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

  #integration .sidesIntegration .img img {
    position: absolute;
    height: 25rem;
    width: 30rem;
  }

  #integration .sidesIntegration .img img:nth-child(1) {
    animation: loading 30s linear infinite;
  }

  #integration .sidesIntegration .img img:nth-child(2) {
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
  }

  @keyframes loading {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  #integration .integration .titleHeader h1 {
    font-size: var(--title-fontD);
  }

  #integration .integration .titleHeader p {
    font-size: var(--secondary-title-fontd);
  }

  #integration .integration ul li {
    font-size: var(--secondary-title-fontd);
  }

  #integration {
    display: flex;
    justify-content: end;
  }

  #integration .integration {
    width: 50%;
    height: 120%;

    border-radius: 0.5rem 0 0 0.5rem;
  }

  /* ===== HOW ===== */
  #how .cards {
    height: 100%;
    gap: 3rem;

    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 5rem 0 0 0;
  }

  #how .cards .card {
    width: 110%;
    height: 24rem;

    padding: 1rem;
  }

  #how .cards .card .img {
    height: 9rem;
    width: 9rem;
  }

  /* ===== PLANOS ===== */

  #planos .cards .card {
    height: 100%;
    width: 100%;
    max-width: 20rem;

    padding: 1.5rem;
  }
}
