/* ========================================
  IMPORTS E CONFIGURAÇÕES GLOBAIS
  ======================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #2f49f4;
  --padding-horizontal: 10vw;
  --primary-color: #2f49f4;
  --border-color: #e2e2e2;
  --primary-purple: #000;
  --orange: #f97316;
  --green: #10b981;
  --dark-blue: #0f172a;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --white: #ffffff;
}

html {
  width: 100%;
}

body {
  color: var(--dark-blue);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.special {
  color: var(--primary-blue);
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 16px;
  font-size: 28px;
}

/* ========================================
  HEADER E NAVEGAÇÃO
  ======================================== */

.header {
  padding: 20px 0;
  background: #fff;
  position: sticky;
  top: 40px;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 13px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--primary-blue);
}

.logo-monitor-header {
  height: 50px !important;
  /* border-right: 2px solid var(--gray-200);
  padding-right: 16px; */
}

/* ========================================
  BOTÕES
  ======================================== */

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 2em;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--primary-purple);
  transform: translateY(-2px);
}

.btn-large {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 2em;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-large:hover {
  background: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.btn-plan {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--primary-blue);
  background: var(--white);
  color: var(--primary-blue);
  border-radius: 2em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 24px;
}

.btn-plan:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-plan-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-plan-primary:hover {
  background: var(--primary-purple);
}

.btn-modal-primary {
  text-align: center;
  flex: 1;
  padding: 14px 24px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 2em;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-modal-primary:hover {
  background: var(--primary-purple);
  transform: translateY(-2px);
}

.btn-modal-secondary {
  text-align: center;
  flex: 1;
  padding: 14px 24px;
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 2em;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-modal-secondary:hover {
  background: var(--gray-100);
}

.btn-promo-primary {
  text-align: center;
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: var(--primary-blue);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-promo-primary:hover {
  background: var(--primary-purple);
  transform: translateY(-1px);
}

.btn-promo-secondary {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-promo-secondary:hover {
  background: var(--gray-100);
}

/* ========================================
  SEÇÃO HERO
  ======================================== */

.hero {
  background: url("bg-hero.png") no-repeat center center/cover;
}

.hero-content {
  width: 100%;
  padding: 8em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  width: 55%;
}

.hero-image {
  width: 40%;
  display: flex;
  justify-content: end;
  align-items: end;
}

.hero-image img {
  width: auto;
  height: 650px;
  margin-right: -100%;
  border-radius: 18px;
  border: 2px solid var(--gray-200);
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.hero p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.badge {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ========================================
  DASHBOARD PREVIEW
  ======================================== */

.dashboard-preview {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.dashboard-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.process-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.column span {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.process-item {
  background: var(--gray-100);
  padding: 12px;
  border-radius: 2em;
  margin-bottom: 8px;
  font-size: 14px;
}

/* ========================================
  WHATSAPP FLOAT
  ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ========================================
  SEÇÃO PROBLEMAS
  ======================================== */

.problems {
  padding: 200px 0 300px;
  position: relative;
  text-align: left;
}

.problems .container {
  display: flex;
  align-items: center;
}

.section-header {
  width: 50%;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left !important;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
}

.problems-image {
  width: 50%;
  display: flex;
  justify-content: end;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.problems-image.visible {
  opacity: 1;
  transform: translateX(0);
}

.chart-preview {
  width: 400px;
  height: 300px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.loading-spinner {
  width: 100px;
  height: 100px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.highlight-text {
  font-size: 32px;
  color: var(--gray-400);
  position: absolute;
  bottom: -100px;
  right: 0;
  text-align: right;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.highlight-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight-blue {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 36px;
}

/* ========================================
  SEÇÃO CONTROLE / CAROUSEL
  ======================================== */

.control {
  padding: 0 0 200px;
}

.control .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.control .title-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.control .container h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 1rem;
}

.control .container .description {
  width: 650px;
  text-align: center;
  margin-top: 2vh;
  margin-bottom: 10vh;
  color: #555;
  line-height: 1.6;
}

/* Carousel */
.carousel {
  width: 100%;
}

.carousel-control {
  display: flex;
  align-items: center;
  gap: 1vw;
  height: 100%;
  width: 100%;
}

.carousel-container {
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60vh;
}

.carousel-container .carousel-image {
  /* background-color: var(--primary-color); */
  border-radius: 10px;
  border: var(--gray-200) 1px solid;
  height: 100%;
  margin-right: 3vw;
  width: 43%;
  overflow: hidden;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-description {
  display: flex;
  flex-direction: column;
  gap: 1.6vh;
  width: 68%;
  height: 100%;
  justify-content: center;
}

.carousel-description-index {
  color: var(--primary-color);
}

.divisor {
  width: 100%;
  height: 1px;
  margin: 2vh 0;
  background-color: var(--border-color);
}

.carousel-checklist {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.carousel-checklist-item {
  display: flex;
  gap: 1vw;
  align-items: center;
}

.carousel-checklist-item i {
  color: var(--primary-color);
  font-size: 24px;
}

.carousel-button {
  border: 1px solid var(--border-color);
  height: 17vh;
  width: 50px;
  border-radius: 16px;
  display: flex;
  background-color: #f8f8f8;
  justify-content: center;
  align-items: center;
  transition: 0.2s all ease-in-out;
  flex-shrink: 0;
}

.carousel-button:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

/* Steps / Cards */
.steps {
  display: flex;
  gap: 2vw;
  margin-top: 8vh;
  width: 100%;
}

.card-step {
  display: flex;
  flex-direction: column;
  gap: 1.67vh;
  padding-top: 2vh;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  flex: 1;
  border-top: 2px solid transparent;
}

.card-step.active {
  border-color: var(--primary-color);
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5px;
  background-color: var(--primary-color);
  transition: width 0.3s;
  width: 0%;
}

.card-step .title {
  font-weight: 600;
}

.card-step.active .title {
  color: var(--primary-color);
}

.card-step span:nth-child(3) {
  font-size: 0.9em;
  color: #666;
}

/* ========================================
  SEÇÃO VÍDEO
  ======================================== */

.video-section {
  padding: 100px 0;
  background: var(--dark-blue);
  color: var(--white);
  text-align: center;
}

.video-section h2 {
  font-size: 42px;
  margin-bottom: 60px;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: url("../img/video-thumbnail.png") no-repeat center center/cover;
  height: 400px;
}

.video-trigger {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 32px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.video-trigger:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.video-trigger-icon {
  margin-left: 6px;
}

/* Modal de vídeo */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2600;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: min(1200px, 95vw);
  height: min(90vh, 95vh);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal video {
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

/* ========================================
  SEÇÃO FEATURES
  ======================================== */

.features {
  padding: 100px 0;
}

.features svg {
  color: var(--gray-400);
}

.features h2 {
  font-size: 42px;
  text-align: left;
  margin-bottom: 20px;
}

.features-subtitle {
  text-align: left;
  margin: 0 0 60px;
  color: var(--gray-600);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1080px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1400px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  cursor: pointer;
}

.feature-card:hover svg {
  color: var(--primary-blue);
}

.feature-card .feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-600);
}

/* ========================================
  SEÇÃO PRICING
  ======================================== */

.pricing {
  padding: 100px 0;
  background: var(--gray-100);
}

.pricing .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing .badge {
  background: var(--gray-600);
  color: var(--white);
}

.pricing h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.toggle-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 12px 24px;
  border-radius: 2em;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.toggle-btn.active {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1080px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-8px);
}

.pricing-card-featured {
  border-color: var(--primary-blue);
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.plan-badge-green {
  background: var(--green);
}

.plan-badge-purple {
  background: var(--primary-purple);
}

.plan-badge-blue {
  background: var(--primary-blue);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.currency {
  font-size: 20px;
  color: var(--gray-600);
}

.amount {
  font-size: 48px;
  font-weight: 700;
}

.period {
  font-size: 16px;
  color: var(--gray-600);
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
}

.plan-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.plan-link:hover {
  text-decoration: underline;
}

/* ========================================
  FOOTER
  ======================================== */

.footer {
  background-color: #f8f9fa;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #4d4f4e;
  font-size: 14px;
}

.logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between !important;
  padding: 5rem 0;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-company {
  flex: 1;
}

.footer-company .logo {
  width: 120px;
  margin-bottom: 1.5rem;
}

.footer-company .company-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #6c757d;
}

.footer-company .social-media {
  display: flex;
  gap: 1rem;
}

.footer-company .social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f3f5;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-company .social-media a:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex: 2;
  justify-content: end;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links .links-column {
  min-width: 160px;
}

.footer-links .links-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #343a40;
}

.footer-links .links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links .links-column li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links .links-column a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-links .links-column a:hover {
  color: var(--primary-color);
}

.footer-links .links-column a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links .links-column a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer-bottom {
  background-color: var(--primary-blue);
  padding: 1.5rem 0;
  color: white;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: white;
}

.footer-info {
  display: flex;
  gap: 2rem;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-info a:hover {
  color: white;
}

/* ========================================
  FEATURE MODAL
  ======================================== */

.feature-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.feature-modal.active {
  display: flex;
}

.feature-modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--gray-200);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-image-container {
  width: 100%;
  height: 400px;
  background: var(--gray-100);
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image-placeholder {
  font-size: 24px;
  color: var(--gray-400);
  text-align: center;
}

.modal-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-nav-button:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.modal-nav-button.prev {
  left: 20px;
}

.modal-nav-button.next {
  right: 20px;
}

.modal-nav-button svg {
  width: 24px;
  height: 24px;
}

.modal-body {
  padding: 40px;
}

.modal-body .feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.modal-body .feature-icon svg {
  color: var(--primary-blue);
}

.modal-body h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--dark-blue);
}

.modal-body p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ========================================
  PLAN MODAL
  ======================================== */

.plan-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.plan-modal.active {
  display: flex;
}

.plan-modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

.plan-modal-header {
  padding: 40px 40px 24px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.plan-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.plan-modal-close:hover {
  background: var(--gray-200);
  transform: rotate(90deg);
}

.plan-modal-close svg {
  width: 20px;
  height: 20px;
}

.plan-modal-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.plan-modal-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.plan-modal-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
}

.plan-modal-price .currency {
  font-size: 24px;
  color: var(--gray-600);
}

.plan-modal-price .amount {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-blue);
}

.plan-modal-price .period {
  font-size: 18px;
  color: var(--gray-600);
}

.plan-modal-body {
  padding: 40px;
}

.plan-modal-section {
  margin-bottom: 32px;
}

.plan-modal-section h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--dark-blue);
}

.plan-modal-section p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.plan-modal-features {
  list-style: none;
}

.plan-modal-features li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--dark-blue);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.plan-modal-features li::before {
  content: "✓";
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.plan-modal-highlight {
  background: var(--gray-100);
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.plan-modal-highlight h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-blue);
}

.plan-modal-highlight p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 0;
}

.plan-modal-footer {
  padding: 24px 40px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 16px;
}

/* ========================================
  PROMO (POPUP E BARRA)
  ======================================== */

.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  padding: 16px;
}

.promo-popup-overlay.active {
  display: flex;
}

.promo-popup {
  position: relative;
  max-width: 800px;
  width: 100%;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.promo-popup-header {
  background: var(--primary-blue);
  color: var(--white);
  padding: 20px 24px;
}

.promo-popup-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-popup-body {
  padding: 2em 2em;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-popup-title {
  font-size: 26px;
  color: var(--dark-blue);
  font-weight: 700;
}

.promo-popup-subtitle {
  color: var(--gray-600);
  line-height: 1.6;
}

.promo-popup-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-blue);
  padding: 8px 0;
  border-radius: 12px;
  font-weight: 600;
}

.promo-tag span {
  color: var(--green);
}

.promo-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.promo-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.promo-popup-close:hover {
  transform: rotate(90deg);
  background: #eef2ff;
}

/* Promo Top Bar */
.promo-bar {
  background: linear-gradient(90deg, var(--primary-blue), #1926a8);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s;
}

.promo-bar:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promo-bar-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.promo-bar-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-bar-close {
  position: relative;
}

/* ========================================
  MEDIA QUERIES - DESKTOP GRANDE (1024px+)
  ======================================== */

@media (max-width: 1024px) {
  .container {
    padding-inline: 4vw;
  }

  .container h2,
  .container .description {
    width: 100%;
    text-align: center;
  }

  .carousel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .carousel-container {
    flex-direction: column;
    height: auto;
    margin-bottom: 2vh;
  }

  .carousel-image {
    width: 100% !important;
    height: 250px !important;
    margin-right: 0 !important;
    margin-bottom: 20px;
  }

  .carousel-image img {
    border-radius: 12px;
  }

  .carousel-description {
    width: 100%;
  }

  .carousel-button,
  .steps,
  .carousel-control {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 0 3rem;
    gap: 2.5rem;
  }

  .hero-text {
    width: 100%;
    text-align: left;
  }

  .hero-image {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .hero-image img {
    height: 420px;
    margin-right: 0;
  }

  .problems .container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .section-header,
  .problems-image {
    width: 100%;
    text-align: left;
  }

  .highlight-text {
    position: static;
    text-align: left;
    margin-top: 1.5rem;
  }

  .footer-content {
    padding: 4rem 8vw;
  }

  .footer-bottom-content {
    padding: 0 8vw;
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
  MEDIA QUERIES - TABLET (768px)
  ======================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header {
    padding: 14px 0;
    top: 35px;
  }

  .btn-primary {
    padding: 10px 18px;
    font-size: 13px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 4rem 0 2rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-image img {
    height: 320px;
  }

  .problems {
    padding: 120px 0 200px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

  .problems-image {
    justify-content: center;
  }

  .highlight-text {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing h2 {
    font-size: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .footer {
    margin-top: 0;
  }

  .footer-info {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-modal-content {
    max-width: 95%;
    margin: 16px;
  }

  .modal-image-container {
    height: 240px;
  }

  .modal-body {
    padding: 20px;
  }

  .plan-modal-content {
    max-width: 95%;
    margin: 16px;
  }

  .plan-modal-header,
  .plan-modal-body,
  .plan-modal-footer {
    padding: 20px;
  }

  .promo-bar-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
  }

  .promo-bar-text {
    font-size: 13px;
  }

  .promo-bar-close {
    right: 12px;
  }
}

/* ========================================
  MEDIA QUERIES - CELULAR PEQUENO (480px)
  ======================================== */

@media (max-width: 480px) {
  .hero-content {
    padding: 4rem 0 2rem;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-image img {
    height: 260px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    padding: 3rem 7vw;
  }

  .footer-company .logo {
    width: 100px;
  }
}

/* ========================================
  MEDIA QUERIES - MOBILE EXTRA PEQUENO (600px)
  ======================================== */

@media screen and (max-width: 600px) {
  .container h2 {
    font-size: 1.5em;
  }
}
