/* Variáveis globais */
:root {
  --primary: #008cff;
  --primary-light: #8e6ff3;
  --secondary: #353fff;
  --dark-bg: #0a0e17;
  --dark-bg-2: #141b2d;
  --text-light: #ffffff;
  --text-secondary: #e0e0e0;
  --card-bg: rgba(255, 255, 255, 0.03);
  --text-muted: #9da4b4;
  --danger: #ec0000;
  --danger-dark: #ff133e;
  --success: #0acf83;
  --warning: #ffb03a;
}

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

/* Header */
header {
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.9);
  backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
  padding: 100px 0 100px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;

  padding: 8px 0px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #fff 0%, #e0e0e0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-description-extended {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.cta-group {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-light);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
}

.btn-danger {
  background: linear-gradient(90deg, var(--danger) 0%, var(--danger-dark) 100%);
  color: var(--text-light);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(92, 112, 240, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  padding: 13px 27px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: rgba(94, 92, 240, 0.1);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  position: relative;
}

.dashboard-image {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
  opacity: 0.6;
}

.dashboard-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(
    90deg,
    rgba(20, 27, 45, 0.95) 0%,
    rgba(10, 14, 23, 0.95) 100%
  );
  border-radius: 16px;
  padding: 40px;
  margin: 60px auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.urgency-headline {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: "%";
  font-size: 24px;
  position: absolute;
  top: 0;
  right: -20px;
}

.stat-text {
  font-size: 16px;
  color: var(--text-secondary);
}

.urgency-text {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Credibility Section */
.credibility {
  text-align: center;
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  margin-bottom: 80px;
}

.credibility-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badge-item {
  height: 60px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.badge-item:hover {
  opacity: 1;
}

.credibility-subtext {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features/Pillars Section */
.features {
  padding: 80px 0;
}

.features-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.features-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 92, 240, 0.1);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(123, 92, 240, 0.5);
  box-shadow: 0 10px 30px rgba(123, 92, 240, 0.2);
}

.feature-icon {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 0px;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-image {
  width: 100%;
  border-radius: 8px;
  margin-top: auto;
  height: 160px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Impact Manifesto */
.impact {
  padding: 100px 0;
  text-align: center;
}

.impact-heading {
  font-size: 36px;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 40px;
}

.impact-text {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 60px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 80px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: calc(50% - 18px);
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark-bg-2);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 0 20px rgba(92, 131, 240, 0.5);
}

.timeline-icon i {
  font-size: 24px;
  color: var(--primary);
}

.timeline-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Productivity Stats */
.productivity {
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  margin-bottom: 80px;
}

.productivity-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.productivity-stats {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.productivity-stat {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.productivity-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(123, 92, 240, 0.3);
}

.productivity-stat-icon {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 20px;
}

.productivity-stat-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.productivity-stat-text {
  font-size: 16px;
  color: var(--text-secondary);
}

.productivity-source {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 30px;
}

/* Alert Section */
.alert-section {
  padding: 40px;
  background: linear-gradient(
    90deg,
    rgba(255, 58, 94, 0.1) 0%,
    rgba(255, 58, 94, 0.2) 100%
  );
  border-left: 4px solid var(--danger);
  border-radius: 8px;
  margin-bottom: 80px;
}

.alert-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--danger);
}

.alert-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* Final Manifesto */
.final-manifesto {
  padding: 100px 0;
  text-align: center;
}

.final-heading {
  font-size: 42px;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, #fff 0%, #e0e0e0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-text {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 60px;
}

.final-cta {
  padding: 18px 36px;
  font-size: 18px;
}

/* Footer */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.footer-logo span {
  color: var(--primary);
}

.footer-about {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
}

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

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-contact {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  width: 30px;
  font-size: 16px;
  color: var(--primary);
}

.contact-text {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  text-align: center;
}

.pricing h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 40px 25px;
  text-align: left;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 92, 240, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
  border: 1px solid var(--primary);
  background: rgb(123 92 240 / 14%);
}

.pricing-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-price span {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-description {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
}

.feature-check {
  color: var(--success);
  margin-right: 10px;
  margin-top: 3px;
}

.badge {
  background: rgba(122, 64, 255, 0.15);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 15px;
}

.badge-new {
  background: rgba(51, 214, 159, 0.15);
  color: var(--success);
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 40px;
  }

  .hero-content {
    flex-direction: column;
  }

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

  .cta-group {
    justify-content: center;
  }

  .dashboard-image {
    max-width: 100%;
    transform: none;
  }

  .dashboard-image:hover {
    transform: none;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    max-width: 100%;
    width: 100%;
  }

  .timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.95);
    padding: 20px;
    clip-path: circle(0% at top right);
    transition: clip-path 0.4s ease-in-out;
    z-index: 100;
    backdrop-filter: blur(10px);
  }

  nav.active {
    clip-path: circle(150% at top right);
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  nav ul li {
    margin-left: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 150px 0 80px;
  }

  .urgency-banner {
    padding: 30px 20px;
  }

  .stat-item {
    min-width: 100%;
  }

  .badges-container {
    gap: 20px;
  }

  .badge-item {
    height: 40px;
  }

  .final-heading {
    font-size: 32px;
  }

  .final-text {
    font-size: 18px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    max-width: 100%;
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary);
}

.header-cta {
  background: var(--primary);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.header-cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(123, 92, 240, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
}

body {
  font-family: "Lexend Deca", "Inter", sans-serif;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Estilos da Plataforma */
.platform-hero {
  padding: 160px 0 100px;
  text-align: center;
}

.platform-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff 0%, #e0e0e0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platform-hero .hero-subtitle {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 40px;
}

.platform-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
}

.platform-intro p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.platform-intro ul {
  list-style: none;
}

.platform-intro li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.platform-intro li:before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.platform-section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-badge {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.platform-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
}

.feature-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.feature-text {
  flex: 1;
}

.feature-text p {
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 15px;
  padding-left: 24px;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  color: var(--success);
  position: absolute;
  left: 0;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.benefit-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
}

.benefit-item h4 {
  color: var(--primary);
  margin-bottom: 15px;
}

.benefit-item ul {
  list-style: none;
}

.benefit-item li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.benefit-item li:before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.analytics-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.analytics-column h4 {
  color: var(--primary);
  margin-bottom: 20px;
}

.analytics-column ul {
  list-style: none;
}

.analytics-column li {
  margin-bottom: 15px;
  padding-left: 24px;
  position: relative;
}

.analytics-column li:before {
  content: "→";
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* Responsividade */
@media (max-width: 992px) {
  .platform-hero h1 {
    font-size: 36px;
  }

  .feature-content {
    flex-direction: column;
  }

  .feature-image {
    order: -1;
  }

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

@media (max-width: 768px) {
  .platform-hero {
    padding: 120px 0 60px;
  }

  .platform-hero h1 {
    font-size: 28px;
  }

  .platform-section {
    padding: 60px 0;
  }

  .platform-section h2 {
    font-size: 28px;
  }

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

/* Estilos da página de Segurança */
.security-hero {
  padding: 160px 0 100px;
  text-align: center;
}

.security-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff 0%, #e0e0e0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.security-intro {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
}

.security-intro p {
  color: var(--text-secondary);
  font-size: 18px;
}

.security-pillars {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.security-pillars h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

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

.pillar-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pillar-icon i {
  font-size: 24px;
  color: var(--text-light);
}

.pillar-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 16px;
}

.security-benefits {
  padding: 100px 0;
}

.security-benefits h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.benefits-table {
  max-width: 900px;
  margin: 0 auto;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}

.benefit-description {
  color: var(--text-secondary);
  font-size: 16px;
}

.shadow-ai {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.shadow-ai h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.section-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.security-features {
  max-width: 700px;
  margin: 0 auto 50px;
}

.security-features ul {
  list-style: none;
}

.security-features li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  color: var(--text-secondary);
  font-size: 16px;
}

.security-features li:before {
  content: "✓";
  color: var(--success);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.security-image {
  text-align: center;
  margin-top: 50px;
}

.security-image img {
  max-width: 200px;
  filter: drop-shadow(0 0 20px rgba(0, 140, 255, 0.3));
}

/* Responsividade para a página de Segurança */
@media (max-width: 992px) {
  .security-hero h1 {
    font-size: 36px;
  }

  .benefit-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

@media (max-width: 768px) {
  .security-hero {
    padding: 120px 0 60px;
  }

  .security-hero h1 {
    font-size: 28px;
  }

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

  .security-benefits h2,
  .security-pillars h2,
  .shadow-ai h2 {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }
}

/* Estilos para a página de Casos de Uso */
.cases-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: white;
}

.cases-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cases-hero .hero-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Filtro de casos */
.cases-filter {
  padding: 40px 0;
  background-color: var(--light-bg);
}

.filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--primary);
  border-radius: 25px;
  background: transparent;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
}

/* Grid de casos */
.cases-grid {
  padding: 60px 0;
}

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

.case-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.case-content {
  padding: 25px;
}

.case-category {
  display: inline-block;
  padding: 5px 12px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 15px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.case-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.case-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* Seção de Resultados */
.results-summary {
  background: var(--light-bg);
  padding: 80px 0;
  text-align: center;
}

.results-summary h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.result-item {
  padding: 30px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.result-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.result-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.result-label {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.4;
}

/* CTA Section */
.cases-cta {
  padding: 100px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  color: white;
}

.cases-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cases-cta p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Media Queries */
@media (max-width: 992px) {
  .cases-hero h1 {
    font-size: 2.5rem;
  }

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

  .result-value {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .cases-hero h1 {
    font-size: 2rem;
  }

  .cases-hero .hero-subtitle {
    font-size: 1rem;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .cases-cta h2 {
    font-size: 2rem;
  }

  .cases-cta p {
    font-size: 1rem;
  }
}

/* Estilos para a página de Comparativo */
.comparison-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: white;
}

.comparison-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.comparison-hero .hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Main Comparison Section */
.comparison-main {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.comparison-table-wrapper {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-weight: 600;
  color: var(--dark-text);
}

.comparison-table .feature-column {
  text-align: left;
  width: 25%;
}

.comparison-table .auramind-column {
  background-color: rgba(var(--primary-rgb), 0.05);
}

.comparison-table thead th {
  padding: 30px 20px;
}

.comparison-table img {
  height: 40px;
  margin-bottom: 10px;
}

.comparison-table .feature-name {
  text-align: left;
  font-weight: 500;
  color: var(--dark-text);
}

.text-success {
  color: #28a745;
}

.text-warning {
  color: #ffc107;
}

.text-danger {
  color: #dc3545;
}

/* Features Detail Section */
.features-detail {
  padding: 80px 0;
}

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

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon i {
  font-size: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--medium-text);
  line-height: 1.6;
}

/* CTA Section */
.comparison-cta {
  background: var(--card-bg);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.comparison-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.comparison-cta p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .comparison-hero h1 {
    font-size: 2.5rem;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .comparison-hero h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .comparison-table-wrapper {
    margin: 0 20px;
    padding: 15px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
  }
}

/* Estilos para a página de Investimento */
.pricing-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: white;
}

.pricing-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.pricing-hero .hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.pricing-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-card {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.featured-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom-left-radius: 8px;
}

.pricing-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.pricing-header h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.price {
  margin: 20px 0;
}

.price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 5px;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text);
}

.price .period {
  font-size: 1.2rem;
  color: var(--text-light);
}

.price .custom-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.price-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 10px;
}

.pricing-cta {
  padding: 30px;
  text-align: center;
  background: var(--light-bg);
}

.pricing-cta .btn-primary {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
}

.faq-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--text);
  line-height: 1.6;
}

/* Pricing CTA Section */
.pricing-cta-section {
  padding: 80px 0;
  text-align: center;
  background: var(--light-bg);
}

.pricing-cta-section h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.pricing-cta-section p {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Media Queries */
@media (max-width: 992px) {
  .pricing-hero h1 {
    font-size: 2.8rem;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

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

@media (max-width: 768px) {
  .pricing-hero {
    padding: 60px 0;
  }

  .pricing-hero h1 {
    font-size: 2.2rem;
  }

  .pricing-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .pricing-section {
    padding: 40px 0;
  }

  .price .amount {
    font-size: 3rem;
  }

  .faq-section h2,
  .pricing-cta-section h2 {
    font-size: 2rem;
  }

  .pricing-cta-section p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

/* Estilos para a página do Centro de Recursos */
.resources-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.resources-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.resources-hero .hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Categories Grid */
.resources-categories {
  padding: 60px 0;
  background: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.category-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.category-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.category-card h3 {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.category-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.4;
}

/* Resources Sections */
.resources-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.resources-section:nth-child(even) {
  background: white;
}

.resources-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 50px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.resource-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.video-thumbnail {
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-button i {
  color: var(--primary);
  font-size: 1.5rem;
}

.play-button:hover {
  background: white;
}

.resource-content {
  padding: 25px;
}

.resource-content h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 15px;
}

.resource-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: var(--primary);
  color: white;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.newsletter-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form .btn-primary {
  background: white;
  color: var(--primary);
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
  background: var(--light-bg);
}

/* Media Queries */
@media (max-width: 992px) {
  .resources-hero h1 {
    font-size: 2.8rem;
  }

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

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

@media (max-width: 768px) {
  .resources-hero {
    padding: 60px 0;
  }

  .resources-hero h1 {
    font-size: 2.2rem;
  }

  .resources-hero .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .resources-section {
    padding: 40px 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form .btn-primary {
    width: 100%;
  }

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

  .newsletter-section p {
    font-size: 1.1rem;
  }
}

/* Blog Styles */
.blog-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: white;
}

.blog-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.blog-hero .hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Featured Post */
.featured-post {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.featured-post-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-post-image {
  height: 100%;
}

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

.featured-post-content {
  padding: 40px;
}

.featured-post-content h2 {
  font-size: 2rem;
  margin: 1rem 0;
  color: var(--dark-text);
}

.featured-post-content p {
  font-size: 1.1rem;
  color: var(--medium-text);
  margin-bottom: 2rem;
}

/* Blog Grid */
.blog-grid {
  padding: 60px 0;
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-filter {
  padding: 8px 20px;
  border: 2px solid var(--primary);
  border-radius: 30px;
  background: transparent;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-filter:hover,
.category-filter.active {
  background: var(--primary);
  color: white;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.post-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-image {
  height: 200px;
}

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

.post-content {
  padding: 25px;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.post-category {
  color: var(--primary);
  font-weight: 500;
}

.post-date {
  color: var(--medium-text);
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
  line-height: 1.4;
}

.post-content p {
  color: var(--medium-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination-number,
.pagination-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-arrow:hover,
.pagination-number.active {
  background: var(--primary);
  color: white;
}

.pagination-arrow.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-dots {
  color: var(--medium-text);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 15px 30px;
  border-radius: 30px;
  background: white;
  color: var(--primary);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .blog-hero h1 {
    font-size: 2.5rem;
  }

  .featured-post-card {
    grid-template-columns: 1fr;
  }

  .featured-post-image {
    height: 300px;
  }

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

  .newsletter-form {
    flex-direction: column;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2rem;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .post-image {
    height: 250px;
  }

  .blog-categories {
    padding: 0 20px;
  }

  .category-filter {
    font-size: 0.9rem;
    padding: 6px 15px;
  }
}

/* Pricing Page Styles */
.pricing-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: white;
}

.pricing-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.pricing-hero .hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Pricing Toggle */
.pricing-toggle {
  padding: 40px 0;
  text-align: center;
}

.toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--card-bg);
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.toggle-label {
  font-weight: 500;
  color: var(--dark-text);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.save-badge {
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Pricing Plans */
.pricing-plans {
  padding: 40px 0 80px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
}

.plan-header h3 {
  font-size: 1.8rem;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.plan-header p {
  color: var(--medium-text);
  margin-bottom: 20px;
}

.plan-price {
  font-size: 3rem;
  color: var(--dark-text);
  font-weight: 600;
}

.plan-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.plan-price .period {
  font-size: 1.1rem;
  color: var(--medium-text);
}

.plan-price.custom {
  font-size: 2rem;
}

/* Show/hide monthly/annual prices */
.amount.annual {
  display: none;
}

body.annual-billing .amount.monthly {
  display: none;
}

body.annual-billing .amount.annual {
  display: inline;
}

.plan-features {
  margin-bottom: 30px;
}

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

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--dark-text);
}

.plan-features i {
  color: var(--primary);
  font-size: 1.1rem;
}

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

/* Features Included */
.features-included {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.features-included h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--dark-text);
}

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

.feature-item {
  text-align: center;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 1.25rem;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--medium-text);
  line-height: 1.6;
}

/* FAQ Section */
.pricing-faq {
  padding: 80px 0;
}

.pricing-faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--dark-text);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
  font-size: 1.25rem;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--medium-text);
  line-height: 1.6;
}

/* CTA Section */
.pricing-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.pricing-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-cta p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .pricing-hero h1 {
    font-size: 2.5rem;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .plan-card.featured {
    grid-column: span 2;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2rem;
  }

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

  .plan-card.featured {
    grid-column: auto;
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-5px);
  }

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

  .toggle-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .save-badge {
    margin-top: 10px;
  }
}
