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

body {
  font-family: "Montserrat", sans-serif;
}

/* ── Header ── */
.header {
  height: 101px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 40px;
}

/* ── Logo ── */
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 193px;
  height: auto;
}

/* ── Nav links ── */
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  flex: 1;
}

.nav__link {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #7a7a7a;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav__link:hover {
  color: #2b7de9;
}

/* ── Actions (button + login) ── */
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Green CTA button */
.btn-trial {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #28a745;
  border-radius: 6px;
  padding: 10px 22px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-trial:hover {
  background-color: #218838;
}

/* Login link */
.btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #4a6fa5;
}

.btn-login__icon {
  width: 22px;
  height: auto;
  flex-shrink: 0;
}

.btn-login__text {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #4a6fa5;
  white-space: nowrap;
}

.btn-login:hover .btn-login__text,
.btn-login:hover .btn-login__icon {
  color: #2b5499;
}

/* ── Hero ── */
.hero {
  position: relative;
  background-color: #ebebeb;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 20px;
  gap: 40px;
}

.hero__content {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
}

.hero__description {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.65;
}

.hero__btn {
  align-self: flex-start;
  padding: 13px 28px;
  font-size: 14px;
}

.hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 110px;
}

/* ── Features ── */
.features {
  background: #fff;
  padding: 80px 24px 100px;
}

.features__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features__title {
  font-family: "Montserrat", sans-serif;
  font-size: 33px;
  font-weight: 500;
  line-height: 1em;
  color: #1a1a1a;
}

.features__dots {
  margin-top: 12px;
  margin-bottom: 64px;
  font-size: 18px;
  letter-spacing: 4px;
  color: #555;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  text-align: center;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-card__icon {
  height: 54px;
  width: auto;
}

.feature-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}

.feature-card__desc {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.3em;
  letter-spacing: 0px;
  color: #555;
}

.feature-card__btn {
  margin-top: 4px;
  align-self: center;
}

/* ── CTA Banner ── */
.cta-banner {
  background-color: #2561a2;
  padding: 80px 24px;
}

.cta-banner__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-banner__title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.cta-banner__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}

.cta-banner__info {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.cta-banner__btn {
  margin-top: 8px;
  padding: 14px 40px;
  font-size: 15px;
}

/* ── Pitch ── */
.pitch {
  background: #fff;
  padding: 80px 24px;
}

.pitch__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}

.pitch__content {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pitch__title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
}

.pitch__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #444;
}

.pitch__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pitch__list li {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  padding-left: 24px;
  position: relative;
}

.pitch__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 500;
}

.pitch__btn {
  align-self: flex-start;
  margin-top: 8px;
  padding: 13px 30px;
}

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

.pitch__image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

/* ── Contadores ── */
.contadores {
  position: relative;
  background-color: #ebebeb;
  padding: 80px 24px 120px;
  overflow: hidden;
}

.contadores__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}

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

.contadores__image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.contadores__content {
  flex: 0 0 46%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contadores__title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
}

.contadores__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #444;
}

.contadores__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contadores__list li {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  padding-left: 24px;
  position: relative;
}

.contadores__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 500;
}

.btn-contadores {
  display: inline-block;
  margin-top: 8px;
  align-self: flex-start;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
  background-color: #2561a2;
  border-radius: 6px;
  padding: 14px 28px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-contadores:hover {
  background-color: #1a4a80;
}

.contadores__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.contadores__wave svg {
  display: block;
  width: 100%;
  height: 110px;
}

/* ── Clients Carousel ── */
.clients {
  background: #fff;
  padding: 70px 24px 90px;
}

.clients__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.clients__title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
}

.clients__dots {
  margin-top: 10px;
  margin-bottom: 48px;
  font-size: 16px;
  letter-spacing: 4px;
  color: #999;
}

.clients__carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clients__arrow {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 42px;
  color: #ccc;
  cursor: pointer;
  line-height: 1;
  padding: 0 8px;
  transition: color 0.2s;
  user-select: none;
}

.clients__arrow:hover:not(:disabled) {
  color: #888;
}

.clients__arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.clients__track-wrapper {
  flex: 1;
  overflow: hidden;
}

.clients__track {
  display: flex;
  transition: transform 0.35s ease;
}

.clients__slide {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.clients__slide img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition:
    filter 0.2s,
    opacity 0.2s;
}

.clients__slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── Video Section ── */
.video-section {
  background-color: #2561a2;
  padding: 64px 24px 80px;
}

.video-section__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.video-section__title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.video-section__thumb {
  width: 100%;
  max-width: 680px;
}

.video-section__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Plans ── */
.plans {
  background: #fff;
  padding: 80px 24px 100px;
}

.plans__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.plans__title {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
}

.plans__dots {
  margin-top: 10px;
  margin-bottom: 56px;
  font-size: 16px;
  letter-spacing: 4px;
  color: #999;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

/* ── Plan Card ── */
.plan-card {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

/* Popular badge ribbon */
.plan-card__badge {
  position: absolute;
  top: 18px;
  right: -28px;
  background: #28a745;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 36px;
  transform: rotate(45deg);
  transform-origin: center;
}

.plan-card__name {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #2561a2;
  margin-bottom: 20px;
}

/* Price box */
.plan-card__price-box {
  width: 100%;
  background: #f3f3f3;
  border-radius: 6px;
  padding: 18px 0;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-card__price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.plan-price__currency {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 6px;
  margin-right: 2px;
}

.plan-price__amount {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1;
}

.plan-price__suffix {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 6px;
  margin-left: 2px;
  text-align: left;
  line-height: 1.5;
}

.plan-price__period {
  font-weight: 400;
  color: #555;
}

/* Feature list */
.plan-card__features {
  list-style: none;
  width: 100%;
  margin-bottom: 28px;
}

.plan-card__features li {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  padding: 10px 0;
  border-bottom: 1px dotted #ccc;
}

.plan-card__features li:first-child {
  border-top: 1px dotted #ccc;
}

/* CTA button */
.btn-plan {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  background-color: #2561a2;
  border-radius: 6px;
  padding: 14px 40px;
  text-decoration: none;
  margin-top: auto;
  transition: background-color 0.2s;
}

.btn-plan:hover {
  background-color: #1a4a80;
}

/* ── Support ── */
.support {
  position: relative;
  background-color: #ebebeb;
  padding: 80px 24px 140px;
  overflow: hidden;
}

.support__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}

.support__content {
  flex: 0 0 46%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support__title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
}

.support__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555;
}

.support__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 4px;
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 6px;
  padding: 13px 28px;
  text-decoration: none;
  transition: filter 0.2s;
}

.btn-support:hover {
  filter: brightness(0.9);
}

.btn-support--green-dark {
  background-color: #1e7e34;
}

.btn-support--whatsapp {
  background-color: #28a745;
}

.btn-support--blue-light {
  background-color: #5ba8d4;
}

.support__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.support__image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

.support__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.support__wave svg {
  display: block;
  width: 100%;
  height: 110px;
}

/* ── Certificado Digital ── */
.certdigital {
  background: #fff;
  padding: 80px 24px;
}

.certdigital__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}

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

.certdigital__image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.certdigital__content {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.certdigital__title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
}

.certdigital__desc {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
}

.certdigital__highlight {
  color: #2561a2;
  font-weight: 600;
}

.btn-certdigital {
  display: inline-block;
  align-self: flex-start;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  background-color: #d6d6d6;
  border-radius: 6px;
  padding: 12px 28px;
  text-decoration: none;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.btn-certdigital:hover {
  background-color: #bbb;
  color: #333;
}

/* ── Footer ── */
.footer {
  position: relative;
  background-color: #2561a2;
  padding: 120px 24px 60px;
  overflow: hidden;
}

.footer__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.footer__wave svg {
  display: block;
  width: 100%;
  height: 110px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer__logo {
  width: 160px;
  height: auto;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer__phone:hover {
  opacity: 0.85;
}

.footer__address {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__social-link {
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.footer__social-link:hover {
  opacity: 1;
}
