/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1d1d1f;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

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

.logo-image {
  height: 40px;
  width: auto;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #dcac6c;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #dcac6c;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #1d1d1f;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(
      135deg,
      rgba(248, 249, 250, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(60, 84, 68, 0.9) 100%
    ),
    url("bg-footer.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  z-index: 10;
  position: relative;
}

.hero-content.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.hero-content.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-logo {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.hero-logo-image {
  height: 80px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1d1d1f;
  letter-spacing: -1px;
  min-height: 110px; /* Altura mínima para acomodar duas linhas */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.hero-title span {
  display: block;
  margin-bottom: 0; /* Remover espaçamento extra */
}

.hero-title.typing {
  border-right: 2px solid #dcac6c;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    border-color: #dcac6c;
  }
  51%,
  100% {
    border-color: transparent;
  }
}

.hero-subtitle {
  font-size: 20px;
  color: #6e6e73;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.5;
}

.cta-button {
  background: #dcac6c;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.cta-button.large {
  padding: 20px 40px;
  font-size: 20px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3c5444, #4a6b5a);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(60, 84, 68, 0.3);
}

.hero-badge i {
  font-size: 16px;
}

.hero-highlight {
  background: linear-gradient(135deg, #3c5444, #4a6b5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 20px;
  color: #6e6e73;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.cta-button.primary {
  background: linear-gradient(135deg, #3c5444, #4a6b5a);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(60, 84, 68, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(60, 84, 68, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #3c5444;
  border: 2px solid #3c5444;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cta-button.secondary:hover {
  background: #3c5444;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(60, 84, 68, 0.3);
}

/* Hero Background */
.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background: linear-gradient(
      135deg,
      rgba(248, 249, 250, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(60, 84, 68, 0.9) 100%
    ),
    url("bg-footer.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(60, 84, 68, 0.1),
    rgba(74, 107, 90, 0.05)
  );
  z-index: 1;
}

.hero-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 30%;
  animation: float 8s ease-in-out infinite reverse;
  z-index: 1;
}

.hero-shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 5%;
  animation: float 10s ease-in-out infinite;
  z-index: 1;
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

/* Seções Gerais */
.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1d1d1f;
  letter-spacing: -0.5px;
}

/* Planejamento Estratégico Section */
.planejamento-estrategico {
  padding: 80px 0;
  background: #ffffff;
}

.content-section {
  background: rgba(255, 255, 255, 0.463);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgb(182, 182, 182);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.section-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5c7c5c, #3c5444);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.section-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.5px;
}

.section-content {
  margin-top: 20px;
}

.text-content {
  margin-bottom: 30px;
}

.text-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #6e6e73;
  margin-bottom: 16px;
}

.executive-summary {
  background: linear-gradient(135deg, #fff 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #dcac6c;
  border-left: 6px solid #dcac6c;
  margin: 20px 0;
}

.summary-text {
  font-size: 18px;
  line-height: 1.6;
  color: #1d1d1f;
  font-style: italic;
  margin: 0;
  text-align: center;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  color: #1d1d1f;
  border-bottom: 1px solid #f0f0f0;
}

.summary-list li:last-child {
  border-bottom: none;
}

.summary-list li::before {
  content: "✓";
  color: #34c759;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #587658;
  border-left: 4px solid #587658;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.5;
}

.info-card li:last-child {
  margin-bottom: 0;
}

.info-card li i {
  color: #dcac6c;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-card h4 i {
  color: #dcac6c;
  font-size: 18px;
  margin-right: 8px;
}

.projetos .info-card p {
  color: rgb(110, 110, 115);
}

.benefits-section {
  margin-top: 40px;
}

.benefits-section h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 20px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #5c7c5c, #3c5444);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 15px;
  color: #1d1d1f;
  font-weight: 500;
  line-height: 1.4;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #dcac6c;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 30px;
  height: 30px;
  background: #dcac6c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
  margin-top: 20px;
}

.step-content p {
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-content li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
}

.step-content li::before {
  content: "•";
  color: #dcac6c;
  font-weight: bold;
  flex-shrink: 0;
}

.criteria-section {
  margin: 30px 0;
}

.criteria-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 20px;
  text-align: center;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dcac6c;
  border-left: 4px solid #dcac6c;
  transition: all 0.3s ease;
}

.criteria-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.criteria-item i {
  width: 40px;
  height: 40px;
  background: #dcac6c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.criteria-item span {
  font-size: 15px;
  color: #1d1d1f;
  font-weight: 500;
  line-height: 1.4;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.comparison-column {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.comparison-column:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 12px;
}

.comparison-title.with-planning {
  background: linear-gradient(135deg, #5c7c5c, #3c5444);
  color: white;
}

.comparison-title.without-planning {
  background: linear-gradient(135deg, #ff3b30, #ff6b6b);
  color: white;
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 6px solid #dcac6c;
  transition: all 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-column:first-child .comparison-item {
  border-left: 4px solid #34c759;
  border: 1px solid #34c759;
}

.comparison-column:last-child .comparison-item {
  border: 1px solid #ff3b30;
  border-left: 4px solid #ff3b30;
}

.comparison-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.comparison-item p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0;
}

.organizational-structure {
  margin: 30px 0;
}

.structure-level {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  border-left: 4px solid #dcac6c;
  transition: all 0.3s ease;
}

.structure-level:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.level-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.level-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
  margin-top: 16px;
}

.level-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.level-content li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.5;
}

.level-content li::before {
  content: "•";
  color: #dcac6c;
  font-weight: bold;
  flex-shrink: 0;
}

.level-content p {
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 12px;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.department {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #dcac6c;
  transition: all 0.3s ease;
}

.department:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.department h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
  text-align: center;
}

.department ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.department li {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 6px;
}

.department li::before {
  content: "→";
  color: #dcac6c;
  font-weight: bold;
  margin-right: 8px;
}

.flow-summary {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin-top: 30px;
  border: 1px solid #dcac6c;
  transition: all 0.3s ease;
}

.flow-summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.flow-summary h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 20px;
  text-align: center;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 150px;
  transition: all 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-2px);
}

.flow-number {
  width: 40px;
  height: 40px;
  background: #dcac6c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.flow-step p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.4;
  margin: 0;
}

.flow-arrow {
  font-size: 24px;
  color: #dcac6c;
  font-weight: bold;
}

.tools-table {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  margin: 30px 0;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: #dcac6c;
  color: white;
  font-weight: 600;
}

.header-cell {
  padding: 16px;
  text-align: center;
  font-size: 14px;
}

.table-section {
  border-bottom: 2px solid #f0f0f0;
}

.table-section:last-child {
  border-bottom: none;
}

.table-section h4 {
  background: #fff;
  padding: 16px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  border-bottom: 1px solid #dcac6c;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.table-row:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table-row:last-child {
  border-bottom: none;
}

.cell {
  padding: 16px;
  font-size: 14px;
  color: #6e6e73;
  border-right: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.cell:last-child {
  border-right: none;
}

.complexity {
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.complexity.low {
  background: #d4edda;
  color: #155724;
}

.complexity.medium {
  background: #fff3cd;
  color: #856404;
}

.complexity.high {
  background: #f8d7da;
  color: #721c24;
}

/* Comparativo Section */
.comparativo {
  padding: 80px 0;
  background: #ffffff;
}

.comparativo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.platform-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.platform-card.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.platform-card.nuvemshop {
  border-top: 4px solid #dcac6c;
}

.platform-card.loja-integrada {
  border-top: 4px solid #34c759;
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.platform-logo {
  width: 60px;
  height: 60px;
  background: #f5f5f7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #dcac6c;
}

.platform-card.loja-integrada .platform-logo {
  color: #34c759;
}

.card-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.badge {
  position: absolute;
  top: -2px;
  right: 20px;
  background: #dcac6c;
  color: white;
  padding: 6px 16px;
  border-radius: 0 0 16px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f7;
}

.feature:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dcac6c;
  font-size: 16px;
}

.feature h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #1d1d1f;
}

.feature p {
  font-size: 14px;
  color: #6e6e73;
  font-weight: 400;
}

/* Pagamentos Section */
.pagamentos {
  padding: 80px 0;
  background: #ffffff;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6e6e73;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.official-link {
  text-align: center;
  margin-bottom: 40px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f7;
  color: #dcac6c;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #dcac6c;
}

.link-button:hover {
  background: #dcac6c;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.link-button i {
  font-size: 12px;
}

.payment-option {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.payment-option.recommended {
  border-top: 4px solid #dcac6c;
  background: linear-gradient(135deg, #fff 0%, #ffffff 100%);
}

.payment-option.recommended::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dcac6c, #5ac8fa);
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.payment-icon {
  width: 60px;
  height: 60px;
  background: #f5f5f7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #dcac6c;
}

.payment-title {
  flex: 1;
}

.payment-title h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.payment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.payment-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #1d1d1f;
}

.benefit-item i {
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
}

.payment-rates h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.rate-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rate-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dcac6c;
  border-left: 4px solid #dcac6c;
}

.rate-item i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dcac6c;
  font-size: 16px;
}

.rate-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.rate-item p {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 4px;
}

.rate-item small {
  font-size: 12px;
  color: #8e8e93;
}

.gateways-section {
  margin-top: 40px;
}

.gateways-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
  text-align: center;
}

.gateways-section p {
  text-align: center;
  color: #6e6e73;
  margin-bottom: 40px;
  font-size: 16px;
}

.gateways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gateway-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gateway-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gateway-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.gateway-header i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dcac6c;
  font-size: 18px;
}

.gateway-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
}

.gateway-rates p {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 8px;
  text-align: left;
}

.gateway-rates strong {
  color: #1d1d1f;
  font-weight: 500;
}

/* Planos Section */
.plans-section {
  margin-top: 40px;
}

.plans-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
  text-align: center;
}

.plans-section p {
  text-align: center;
  color: #6e6e73;
  margin-bottom: 40px;
  font-size: 16px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.plan-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.plan-card.elite {
  border: 2px solid #34c759;
  background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.plan-header {
  margin-bottom: 20px;
}

.plan-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 24px;
  font-weight: 700;
  color: #34c759;
}

.plan-card.elite .plan-price {
  color: #1d1d1f;
}

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

.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6e6e73;
  justify-content: center;
}

.plan-feature i {
  color: #34c759;
  font-size: 16px;
}

.cost-comparison {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #dcac6c;
}

.cost-item {
  font-size: 16px;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.cost-item:last-child {
  margin-bottom: 0;
}

.cost-item strong {
  color: #dcac6c;
}

.cost-item.highlight {
  background: #e8f4fd;
  color: #dcac6c;
  padding: 12px;
  border-radius: 8px;
  margin-top: 12px;
  font-weight: 600;
  border: 1px solid #b8daff;
}

/* Nuvemshop Plans */
.nuvemshop-plans .plan-card {
  border: 1px solid rgba(0, 122, 255, 0.1);
}

.nuvemshop-plans .plan-card.recommended {
  border: 2px solid #dcac6c;
  background: linear-gradient(135deg, #fff 0%, #ffffff 100%);
}

.nuvemshop-plans .plan-price {
  color: #dcac6c;
}

.nuvemshop-plans .plan-card.recommended .plan-price {
  color: #dcac6c;
}

.nuvemshop-plans .plan-feature i {
  color: #dcac6c;
}

.plan-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dcac6c;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.plan-card.recommended {
  position: relative;
}

/* Pagamentos Loja Integrada Section */
.pagamentos-li {
  padding: 80px 0;
  background: #f8f9fa;
}

.payment-option.li-recommended {
  border-top: 4px solid #34c759;
  background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.payment-option.li-recommended::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3c5444, #5c7c5c);
}

.badge.li-recommended {
  background: #34c759;
  color: white;
  position: absolute;
  top: -2px;
  right: 20px;
  padding: 6px 16px;
  border-radius: 0 0 16px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.rate-item.li-plan {
  background: #f0fff4;
  border: 1px solid #d4edda;
  border-left: 4px solid #34c759;
}

.rate-item.li-plan i {
  color: #34c759;
}

.li-gateways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.li-gateway-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #ff9500;
}

.li-gateway-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.li-gateway-card .gateway-header i {
  color: #ff9500;
}

/* Recomendação Section */
.recomendacao {
  padding: 80px 0;
  background: #f5f5f7;
}

.recomendacao-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.recomendacao-text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1d1d1f;
  letter-spacing: -0.5px;
}

.recomendacao-text p {
  font-size: 18px;
  color: #6e6e73;
  margin-bottom: 30px;
  line-height: 1.6;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #1d1d1f;
}

.benefit i {
  color: #34c759;
  font-size: 18px;
}

.chart-container {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.chart-container h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1d1d1f;
  text-align: center;
}

.chart {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.chart-bar span {
  width: 120px;
  font-size: 14px;
  font-weight: 500;
  color: #6e6e73;
}

.bar {
  height: 8px;
  background: #dcac6c;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.nuvemshop-bar .bar {
  background: linear-gradient(90deg, #dcac6c, #5ac8fa);
}

.loja-integrada-bar .bar {
  background: linear-gradient(90deg, #3c5444, #5c7c5c);
}

.payment-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.comparison-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #dcac6c;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #1d1d1f;
}

.comparison-header i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dcac6c;
  font-size: 16px;
}

.comparison-item:last-child .comparison-header i {
  color: #34c759;
}

.comparison-details p {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 8px;
  text-align: left;
}

.comparison-details strong {
  color: #1d1d1f;
  font-weight: 500;
}

.comparison-details .highlight {
  font-weight: 600;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f0fff4;
  color: #34c759;
  border: 1px solid #d4edda;
}

.comparison-item:first-child .highlight {
  background: #e8f4fd;
  color: #dcac6c;
  border-color: #b8daff;
}

.bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: inherit;
  animation: fillBar 2s ease forwards;
}

/* Valores de Migração Section */
.valores-migracao {
  padding: 80px 0;
  background: #ffffff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.package-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-card.recommended {
  border: 2px solid #dcac6c;
  background: linear-gradient(135deg, #fff 0%, #ffffff 100%);
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -2px;
  right: 20px;
  background: #dcac6c;
  color: white;
  padding: 6px 16px;
  border-radius: 0 0 16px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.package-header {
  margin-bottom: 30px;
}

.package-icon {
  width: 80px;
  height: 80px;
  background: #f5f5f7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #dcac6c;
}

.package-card.recommended .package-icon {
  background: linear-gradient(135deg, #dcac6c, #5ac8fa);
  color: white;
}

.package-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #6e6e73;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-header h4 {
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.package-subtitle {
  font-size: 16px;
  color: #6e6e73;
  font-weight: 400;
}

.package-price {
  margin-bottom: 30px;
}

.price-range {
  font-size: 32px;
  font-weight: 700;
  color: #dcac6c;
  letter-spacing: -1px;
}

.package-features {
  margin-bottom: 30px;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #1d1d1f;
  line-height: 1.5;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item i {
  color: #34c759;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.package-cta {
  margin-top: auto;
}

.package-button {
  width: 100%;
  background: #f5f5f7;
  color: #1d1d1f;
  border: 2px solid #dcac6c;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-button:hover {
  background: #dcac6c;
  color: white;
  border-color: #dcac6c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.package-button.primary {
  background: #dcac6c;
  color: white;
  border-color: #dcac6c;
}

.package-button.primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}

.packages-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #dcac6c;
}

.packages-note p {
  font-size: 14px;
  color: #6e6e73;
  margin: 0;
}

.packages-note strong {
  color: #1d1d1f;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.step.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #dcac6c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.step-content p {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.5;
}

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

/* Seção Projetos */
.projetos {
  padding: 80px 0;
}

/* Footer */
.footer {
  background: #1d1d1f;
  color: #f5f5f7;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #f5f5f7;
}

.contact-item i {
  width: 20px;
  color: #dcac6c;
}

.footer-rights p {
  font-size: 14px;
  color: #8e8e93;
  margin-bottom: 20px;
}

.official-sources {
  margin-top: 20px;
}

.official-sources h4 {
  font-size: 16px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 12px;
}

.source-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.source-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8e8e93;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.source-links a:hover {
  color: #dcac6c;
}

.source-links a i {
  font-size: 16px;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 0 60px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: auto;
    transform: none;
    top: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 36px;
    min-height: 90px; /* Ajustar altura para mobile */
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .comparativo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-table {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .departments-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-steps {
    flex-direction: column;
    gap: 16px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .table-header {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-section h4 {
    font-size: 14px;
  }

  .content-section {
    padding: 20px;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .section-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .section-header h3 {
    font-size: 24px;
  }

  .platform-card {
    padding: 30px 20px;
  }

  .recomendacao-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .payment-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gateways-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .li-gateways-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .payment-comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-card.recommended {
    transform: none;
  }

  .hero-content {
    animation-duration: 0.6s;
  }

  .hero-content.fade-in {
    transition-duration: 0.6s;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 40px;
  }

  .hero-title {
    font-size: 28px;
    min-height: 70px; /* Ajustar altura para mobile pequeno */
  }

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

  .hero-actions {
    justify-content: center;
    margin-bottom: 40px;
  }

  .cta-button.primary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 24px;
    margin: 0 auto;
  }

  .cta-button.primary {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .platform-card {
    padding: 20px 15px;
  }

  .chart-container {
    padding: 20px;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .payment-option {
    padding: 20px 15px;
  }

  .payment-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .gateway-card {
    padding: 20px 15px;
  }

  .source-links {
    flex-direction: column;
    gap: 12px;
  }

  .link-button {
    padding: 10px 20px;
    font-size: 13px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plan-card {
    padding: 20px 15px;
  }

  .package-card {
    padding: 30px 20px;
  }

  .package-header h4 {
    font-size: 24px;
  }

  .price-range {
    font-size: 28px;
  }

  .package-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .package-badge,
  .badge {
    right: 10px;
    top: -2px;
    padding: 4px 12px;
    font-size: 10px;
    border-radius: 0 0 12px 12px;
  }

  .hero-content {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }

  .hero-content.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }

  .logo-image {
    height: 32px;
  }

  .hero-logo-image {
    height: 60px;
    border-radius: 12px;
  }
}

/* Utilitários */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Fade Animation */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-fade.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor personalizado */
body {
  cursor: none; /* esconde o cursor padrão */
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  pointer-events: none; /* evita bloquear cliques */
  z-index: 9999;
}

/* Scroll suave personalizado */
html {
  scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Footer */
.footer {
  background: linear-gradient(
      135deg,
      rgba(60, 84, 68, 0.9) 0%,
      rgba(42, 58, 47, 0.9) 100%
    ),
    url("bg-footer.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: white;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-logo-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link i {
  font-size: 18px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #dcac6c, #b8945f);
  border-radius: 1px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #dcac6c;
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.contact-item i {
  color: #dcac6c;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

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

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-description {
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }

  .logo-text h1 {
    font-size: 16px;
  }

  .logo-text p {
    font-size: 10px;
  }
}
