/* ==========================================================================
   SisRUN - High Performance Design System & Styles
   Zero-framework Vanilla CSS for 90-100% PageSpeed Score
   ========================================================================== */

/* 1. Google Fonts & CSS Custom Properties */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Brand Colors */
  --primary: #2e75f1;
  --primary-hover: #1c61db;
  --primary-light: #e8f0fe;
  --primary-gradient: linear-gradient(135deg, #0492fe 0%, #2e75f1 100%);
  --accent-green: #25d366;
  --accent-yellow: #ffb800;

  /* Neutral Colors */
  --dark-navy: #071230;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg-body: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(46, 117, 241, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 20px 40px -15px rgba(7, 18, 48, 0.07);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Global Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* 3. Typography & Utility Classes */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

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

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(4, 146, 254, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 146, 254, 0.45);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

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

.btn-secondary {
  background-color: var(--dark-navy);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #0d1e4c;
  transform: translateY(-2px);
}

/* 4. Header & Navigation (Transparent Overlay & Sticky Scrolled State) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  padding: 1.25rem 0;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled,
.header.header-solid {
  background-color: #2b76f6;
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: 44px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding: 0.4rem 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-link {
  text-shadow: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width var(--transition-normal);
  border-radius: 2px;
}

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

.btn-login {
  background: #0492fe;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: none;
  transition: all var(--transition-normal);
}

.btn-login:hover {
  background: #0077e6;
  transform: translateY(-1px);
  box-shadow: none;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--dark-navy);
  font-size: 0.95rem;
  font-weight: 600;
}

.dropdown-menu-custom a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Toggle Hamburger Icon Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background-color: #0096ff;
  border-radius: 8px;
  cursor: pointer;
  padding: 0 9px;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Header Responsive Styles for Mobile (< 991px) */
@media (max-width: 991px) {
  .header {
    background-color: #2b76f6 !important;
    padding: 0.65rem 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  }

  .logo img {
    height: 36px;
    width: auto;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1e62d9;
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 0.5rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-shadow: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu-custom {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    box-shadow: none;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu-custom,
  .nav-dropdown:hover .dropdown-menu-custom {
    display: block;
  }

  .dropdown-menu-custom a {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dropdown-menu-custom a:last-child {
    border-bottom: none;
  }

  .dropdown-menu-custom a:hover {
    color: #ffffff;
    background: transparent;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn-login {
    padding: 0.45rem 1.1rem;
    font-size: 0.88rem;
  }

  .mobile-toggle {
    display: flex;
  }
}


/* 5. Hero Section (Exact Match to Original Site) */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(12, 22, 33, 0.75) 0%, rgba(12, 22, 33, 0.45) 50%, rgba(12, 22, 33, 0.6) 100%), url('../images/hero-banner.jpg') no-repeat center center / cover;
  color: #ffffff;
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero-left-content {
  max-width: 720px;
  text-align: left;
}

.hero-pre-heading {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-main-heading {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: #0492fe;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.hero-dynamic-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-section {
    background-position: 78% center;
  }

  .hero-left-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-pre-heading {
    font-size: 1rem;
    text-align: center;
  }

  .hero-main-heading {
    font-size: 2.75rem;
    text-align: center;
  }

  .hero-dynamic-heading {
    font-size: 2.25rem;
    min-height: 3rem;
    justify-content: center;
    text-align: center;
  }

  .hero-description-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-conheca {
    margin: 0 auto;
    display: inline-flex;
  }
}


.rotating-word {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-description-text {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Button CONHEÇA AGORA */
.btn-conheca {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.35rem 2rem 0.35rem 0.35rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
}

.btn-conheca:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-conheca-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0492fe;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cookie Consent Bar */
.cookie-bar {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  background: #ffffff;
  color: #374151;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  max-width: 90%;
}

.cookie-bar a {
  color: #1f2937;
  font-weight: 700;
  text-decoration: underline;
}

.btn-cookie-accept {
  background: #0492fe;
  color: #ffffff;
  font-weight: 700;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: background var(--transition-fast);
}

.btn-cookie-accept:hover {
  background: #007ce0;
}

/* 6. Video Presentation Section (Exact Match to Reference Screenshot) */
.video-presentation-section {
  padding: 4.5rem 0 5rem 0;
  background-color: #ffffff;
}

.video-section-tag {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.video-section-title {
  font-size: 3.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .video-section-title {
    font-size: 2.25rem;
  }
}

.video-banner-container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.video-banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.video-banner-container:hover .video-banner-img {
  transform: scale(1.02);
}

/* Pulsing Play Button */
.play-btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0492fe;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 10;
  box-shadow: 0 0 0 0 rgba(4, 146, 254, 0.7);
  animation: pulse-ring 2s infinite;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.play-btn-pulse::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(4, 146, 254, 0.5);
  z-index: -1;
  animation: pulse-wave 2s infinite;
}

.video-banner-container:hover .play-btn-pulse {
  transform: translate(-50%, -50%) scale(1.1);
  background: #007ce0;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(4, 146, 254, 0.7);
  }

  70% {
    box-shadow: 0 0 0 28px rgba(4, 146, 254, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(4, 146, 254, 0);
  }
}

@keyframes pulse-wave {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  60% {
    transform: scale(1.45);
    opacity: 0;
  }

  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Button TESTE GRÁTIS POR 7 DIAS */
.btn-teste-gratis {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 2rem 0.45rem 0.45rem;
  background: #ffffff;
  border: 1.5px solid #6b7280;
  border-radius: 50px;
  color: #1f2937;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: all var(--transition-normal);
}

.btn-teste-gratis:hover {
  border-color: #0492fe;
  color: #0492fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 146, 254, 0.15);
}

.btn-teste-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0492fe;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video Modal Lightbox */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 2001;
  background: #000000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2002;
  line-height: 1;
}

.video-iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Image Modal Lightbox */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2050;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.image-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 2051;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-modal.active .image-modal-content {
  transform: scale(1);
}

.image-modal-body {
  position: relative;
  max-width: 100%;
  max-height: 82vh;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-modal-body img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.image-modal-caption {
  padding: 0.85rem 1.5rem;
  background: #090d16;
  color: #f8fafc;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.image-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2052;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.image-modal-close:hover {
  transform: scale(1.15);
  color: #38bdf8;
}

.image-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2052;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.image-modal-nav:hover {
  background: #0492fe;
  border-color: #0492fe;
  transform: translateY(-50%) scale(1.1);
}

.image-modal-nav.prev {
  left: -70px;
}

.image-modal-nav.next {
  right: -70px;
}

@media (max-width: 768px) {
  .image-modal-nav.prev {
    left: 10px;
  }

  .image-modal-nav.next {
    right: 10px;
  }

  .image-modal-close {
    top: -40px;
    right: 10px;
  }
}

.partners-section {
  padding: 2.5rem 0;
  background-color: var(--bg-alt);
  border-y: 1px solid var(--border-color);
}

.partners-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-fast);
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.partner-card img {
  height: 32px;
  width: auto;
}

.partner-card span {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-navy);
}

/* 7. Features Thumbnail Grid Section (Exact Match to Reference Screenshot) */
.features-thumb-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.features-section-tag {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.features-section-title {
  font-size: 3.25rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .features-section-title {
    font-size: 2.25rem;
  }
}

.features-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

@media (max-width: 1100px) {
  .features-thumb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features-thumb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 520px) {
  .features-thumb-grid {
    grid-template-columns: 1fr;
  }
}

.feature-thumb-card {
  position: relative;
  height: 230px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.8);
  background-color: #f3f4f6;
  cursor: default;
}

.feature-thumb-card.clickable-card {
  cursor: pointer;
}

.feature-thumb-card.clickable-card::after {
  content: 'Ampliar';
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 15;
  backdrop-filter: blur(4px);
}

.feature-thumb-card.clickable-card:hover::after {
  opacity: 1;
}

.feature-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.feature-thumb-card:hover .feature-thumb-img {
  transform: scale(1.06);
}

/* Centered Blue Badge Overlay */
.feature-badge-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  max-width: 220px;
  background: linear-gradient(135deg, #0492fe 0%, #0099ff 100%);
  border-radius: 16px;
  padding: 1.5rem 0.75rem 1rem 0.75rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(4, 146, 254, 0.35);
  transition: all 0.3s ease;
}

.feature-thumb-card:hover .feature-badge-overlay {
  transform: translate(-50%, -55%);
  box-shadow: 0 12px 28px rgba(4, 146, 254, 0.5);
}

.feature-badge-icon {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #0492fe;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-badge-title {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 0.2rem;
}

.feature-badge-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* 8. Dark Metrics Bar (Exact Match to Reference Screenshot 1) */
.stats-dark-bar {
  background: linear-gradient(180deg, #09122b 0%, #060c1d 100%);
  padding: 3.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-dark-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.stat-dark-item {
  flex: 1;
  min-width: 200px;
}

.stat-dark-number {
  font-size: 3.25rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-dark-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.stat-dark-highlight {
  font-size: 2rem;
  font-weight: 900;
  color: #38bdf8;
  line-height: 1;
}

.stat-dark-stars {
  font-size: 1.5rem;
  color: #38bdf8;
  letter-spacing: 0.08em;
}

.stat-dark-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.65rem;
}

/* 9. Target Audience Section with bgs.jpg Overlay (Exact Match to Reference Screenshot 2) */
.audience-overlay-section {
  position: relative;
  background: url('../images/bgs.jpg') center center / cover no-repeat;
  padding: 5.5rem 0;
}

.audience-overlay-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 10, 0.88);
  z-index: 1;
}

.audience-overlay-section .container {
  position: relative;
  z-index: 2;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.audience-card {
  text-align: center;
}

.audience-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #0492fe;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: none;
}

.audience-icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.audience-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.audience-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
  margin: 0 auto;
}

/* 10. Testimonials Section (Exact Match to Reference Screenshot) */
.testimonials-section {
  padding: 5.5rem 0;
  background-color: #f4f6fc;
}

.testimonials-tag {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.testimonials-title {
  font-size: 3.1rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2.15rem;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-stars {
  font-size: 1.35rem;
  color: #f59e0b;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 360px;
  flex-grow: 1;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0492fe;
  line-height: 1.2;
}

.author-company {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b7280;
  margin-top: 0.2rem;
}

/* 11. Official Pricing Cards Grid (Exact Match to Reference Screenshot) */
.pricing-section {
  padding: 5.5rem 0;
  background-color: #ffffff;
}

.pricing-tag {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.pricing-main-title {
  font-size: 3.25rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .pricing-main-title {
    font-size: 2.25rem;
  }
}

.pricing-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (max-width: 1100px) {
  .pricing-four-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

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

.official-plan-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.official-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(4, 146, 254, 0.18);
}

.plan-blue-header {
  background: #3b82f6;
  color: #ffffff;
  padding: 1.75rem 1rem;
  text-align: center;
}

.plan-period-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.plan-limit-sub {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.95;
  margin-top: 0.35rem;
}

.plan-white-body {
  background-color: #f4f6fc;
  padding: 2.25rem 1.25rem 1.75rem 1.25rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.plan-price-block {
  margin-bottom: 0.5rem;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  vertical-align: super;
}

.plan-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.03em;
}

.plan-fee-text {
  font-size: 0.88rem;
  font-weight: 800;
  color: #1f2937;
  margin-top: 0.35rem;
}

.plan-payment-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: #4b5563;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.plan-cta-pill {
  display: inline-block;
  background-color: #3b82f6;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.65rem 2.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.plan-cta-pill:hover {
  background-color: #2563eb;
  transform: scale(1.03);
  color: #ffffff;
}

.plan-cta-pill.disabled {
  background-color: #94a3b8;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.65;
  pointer-events: none;
  box-shadow: none;
  transform: none !important;
}

.plan-duration-foot {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 1rem;
}

.pricing-more-wrapper {
  margin-top: 3.5rem;
  text-align: center;
}

.pricing-more-label {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1.5rem;
}

.pricing-all-plans-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 2.25rem 0.6rem 0.6rem;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  color: #374151;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.pricing-all-plans-btn:hover {
  border-color: #0492fe;
  color: #0492fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 146, 254, 0.2);
}

.pricing-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0492fe;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 12. Combined Trial Form & FAQ Section (Exact Match to Reference Screenshot) */
.trial-faq-section {
  padding: 5.5rem 0;
  background-color: #f4f6fc;
}

.trial-faq-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .trial-faq-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.form-tag,
.faq-tag {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.form-title,
.faq-section-title {
  font-size: 3.1rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 2.25rem;
}

@media (max-width: 768px) {

  .form-title,
  .faq-section-title {
    font-size: 2.15rem;
  }
}

.form-emoji-box {
  display: inline-block;
  font-size: 1.85rem;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.trial-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
}

.form-group label .req {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 0.95rem;
  color: #1f2937;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0492fe;
  box-shadow: 0 0 0 3px rgba(4, 146, 254, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.trial-submit-btn {
  align-self: flex-start;
  background-color: #0492fe;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 2.25rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(4, 146, 254, 0.35);
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.trial-submit-btn:hover {
  background-color: #0080eb;
  transform: translateY(-2px);
}

/* Right Column: FAQ */
.faq-official-accordion {
  display: flex;
  flex-direction: column;
}

.official-faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.25rem 0;
}

.official-faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.official-faq-item.active .official-faq-question {
  color: #0492fe;
}

.faq-plus-icon {
  font-size: 1.35rem;
  font-weight: 400;
  color: #6b7280;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.official-faq-item.active .faq-plus-icon {
  transform: rotate(45deg);
  color: #0492fe;
}

.official-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.official-faq-item.active .official-faq-answer {
  opacity: 1;
  margin-top: 0.85rem;
}

background: var(--primary-gradient);
color: #ffffff;
font-size: 0.8rem;
font-weight: 800;
text-transform: uppercase;
padding: 0.3rem 1rem;
border-radius: var(--radius-full);
letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-navy);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin: 0.75rem 0 0.25rem 0;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-activation {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 700;
}

.pricing-features {
  margin: 1.5rem 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* 10. Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.stars {
  color: var(--accent-yellow);
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 11. FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  width: 100%;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  text-align: left;
  background: none;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform var(--transition-normal);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-item.active .faq-body {
  padding-bottom: 1.35rem;
}

/* 12. Blog Preview Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-content {
  padding: 1.75rem;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-snippet {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.blog-card-link {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* 13. Official Centered Footer (Exact Match to Reference Screenshot) */
.official-footer {
  background-color: #2b2b2b;
  padding: 3.5rem 0 3rem 0;
  color: #ffffff;
  text-align: center;
}

.footer-centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0.25rem 0;
}

.social-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0492fe;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.social-icon-circle:hover {
  background-color: #007ce0;
  transform: translateY(-2px);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.footer-legal-links a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #0492fe;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.88rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

/* 14. Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 38px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-green, #25d366);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 99999;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

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

/* 15. Legal Document Pages */
.legal-header {
  padding-top: 130px;
  padding-bottom: 2.5rem;
  background: var(--primary-gradient);
  color: #ffffff;
  text-align: center;
}

.legal-header .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.legal-header h1 {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.legal-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.legal-body {
  padding: 3rem 0 5rem;
  background-color: var(--bg-alt);
}

.legal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-main);
  line-height: 1.6;
}

.legal-content strong {
  color: var(--dark-navy);
}

.legal-callout {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
}

.legal-callout p {
  margin-bottom: 0;
  color: var(--dark-navy);
  font-weight: 500;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color var(--transition-fast);
}

.legal-back-btn:hover {
  color: var(--primary-hover);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 1.75rem 1.25rem;
  }

  .legal-header h1 {
    font-size: 1.75rem;
  }
}

/* Floating Back-to-Top Button */
.btn-back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 40px;
  background-color: #0492fe;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background-color: #0077e6;
  opacity: 0.9;
}

.btn-back-to-top:active {
  background-color: #0066cc;
}

/* 16. App do Aluno Page Styles */
.app-aluno-hero {
  padding-top: 130px;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
  text-align: center;
}

.app-aluno-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.app-aluno-subtitle {
  font-size: 1.15rem;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.app-aluno-divider {
  width: 60px;
  height: 3px;
  background: #0492fe;
  margin: 0 auto 3rem auto;
  border-radius: 2px;
}

.app-slider-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.app-swiper {
  padding-bottom: 3.5rem !important;
}

.app-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  box-shadow: none;
}

.app-slide img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.app-slide img:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.app-swiper .swiper-button-next,
.app-swiper .swiper-button-prev {
  background-color: #0492fe;
  color: #ffffff !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(4, 146, 254, 0.35);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.app-swiper .swiper-button-next:after,
.app-swiper .swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

.app-swiper .swiper-button-next:hover,
.app-swiper .swiper-button-prev:hover {
  background-color: #0077e6;
  transform: scale(1.08);
}

.app-swiper .swiper-pagination-bullet-active {
  background-color: #0492fe !important;
  width: 24px !important;
  border-radius: 6px !important;
}

.app-download-section {
  background-color: #f7f7f7;
  padding: 1rem 0 5rem 0;
  text-align: center;
}

.app-download-info {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.app-download-cta {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.75rem;
}

.app-download-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.app-badge-btn img {
  height: 52px;
  width: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.app-badge-btn:hover img {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

/* 17. Kit de Divulgação (Media Kit) Styles */
.mediakit-section {
  padding-top: 130px;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}

.mediakit-hero {
  text-align: center;
  margin-bottom: 3.5rem;
}

.mediakit-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.mediakit-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.mediakit-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.mediakit-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 0.5rem;
}

.mediakit-card-subtitle {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 2rem;
}

/* Video Card */
.mediakit-video-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.mediakit-video-vertical {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background-color: #000000;
}

.mediakit-video-vertical video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mediakit-video-download {
  display: flex;
  align-items: center;
}

.btn-download-pill {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.35rem 2rem 0.35rem 0.35rem;
  background-color: #ffffff;
  border: 1px solid #777777;
  border-radius: 50px;
  color: #4b5563;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.btn-download-pill:hover {
  border-color: #0492fe;
  color: #0492fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(4, 146, 254, 0.15);
}

.btn-download-icon {
  width: 44px;
  height: 44px;
  background-color: #0492fe;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-download-pill:hover .btn-download-icon {
  background-color: #0077e6;
  transform: scale(1.05);
}

/* Image Grid */
.mediakit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mediakit-grid-stories {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.mediakit-img-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mediakit-img-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.mediakit-img-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.mediakit-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 146, 254, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mediakit-img-item:hover .mediakit-img-overlay {
  opacity: 1;
}

.mediakit-img-overlay svg {
  width: 36px;
  height: 36px;
  color: #ffffff;
}

/* Download Buttons */
.mediakit-actions {
  text-align: center;
}

.btn-zip-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background-color: #0492fe;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(4, 146, 254, 0.35);
  transition: all 0.2s ease;
}

.btn-zip-download:hover {
  background-color: #0077e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 146, 254, 0.45);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

/* 18. Scroll Reveal Staggered Text Animation (GSAP SplitText Replica) */
.reveal-char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--char-index) * 0.02s);
  will-change: opacity, transform;
}

.animated .reveal-char,
.reveal-title.animated .reveal-char {
  opacity: 1;
  transform: translateX(0);
}

/* 19. Help & Support Contact Section (Exact Match to Reference Screenshot) */
.help-section {
  padding: 4.5rem 0;
  background-color: #f4f6fc;
}

.help-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.help-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 2.5rem;
}

.help-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.help-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0492fe;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(4, 146, 254, 0.25);
}

.help-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.help-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #6b7280;
}

.help-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.help-value:hover {
  color: #0492fe;
}

.help-value.text-normal {
  font-weight: 600;
}

/* 20. Official Blog Section (Exact Match to Reference Screenshot) */
.official-blog-section {
  padding: 5.5rem 0;
  background-color: #ffffff;
}

.official-blog-tag {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.official-blog-title {
  font-size: 3rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
}

.blog-carousel-relative {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.blog-cards-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
}

.blog-cards-track::-webkit-scrollbar {
  display: none;
}

.official-blog-card {
  flex: 0 0 calc(33.333% - 1.34rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

.blog-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background-color: #f3f4f6;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.official-blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-date {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.blog-card-heading {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.blog-card-heading a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-heading a:hover {
  color: #0492fe;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-arrow-btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0492fe;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(4, 146, 254, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.blog-arrow-btn.prev-btn {
  left: -10px;
}

.blog-arrow-btn.next-btn {
  right: -10px;
}

.blog-arrow-btn:hover {
  background-color: #0278d5;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 992px) {
  .official-blog-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .official-blog-card {
    flex: 0 0 100%;
  }

  .blog-carousel-relative {
    padding: 0 1.5rem;
  }
}

/* ACESSAR O BLOG CTA Button (Exact Match to Reference Screenshot) */
.btn-acessar-blog {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 2.25rem 0.35rem 0.35rem;
  border-radius: 9999px;
  border: 1.5px solid #4b5563;
  background-color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-blog-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #0492fe;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(4, 146, 254, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-blog-text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b5563;
  margin-left: 1.25rem;
  transition: color 0.3s ease;
}

.btn-acessar-blog:hover {
  border-color: #0492fe;
  box-shadow: 0 6px 20px rgba(4, 146, 254, 0.18);
  transform: translateY(-2px);
}

.btn-acessar-blog:hover .btn-blog-icon {
  transform: translate(2px, -2px);
  background-color: #0278d5;
}

.btn-acessar-blog:hover .btn-blog-text {
  color: #0492fe;
}

/* ==========================================================================
   Planos Page Range Calculator Styles (Exact Match to sisrun.com.br/planos/)
   ========================================================================== */
.planos-page-main {
  background-color: #f7f7f7;
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 80vh;
}

@media (max-width: 768px) {
  .planos-page-main {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.planos-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .planos-main-title {
    font-size: 1.6rem;
  }
}

.planos-title-divider {
  width: 40%;
  max-width: 400px;
  height: 1px;
  background-color: #494949;
  margin: 1.25rem auto;
}

.planos-calculator-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 2.5rem auto 0 auto;
  padding: 3rem 2rem;
}

@media (max-width: 768px) {
  .planos-calculator-card {
    padding: 2rem 1.25rem;
    margin-top: 1.5rem;
  }
}

.planos-qty-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
  display: block;
}

.planos-number-input {
  width: 100px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 6px 10px;
  margin: 0.5rem auto 1.5rem auto;
  display: block;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.planos-number-input:focus {
  border-color: #0492fe;
  box-shadow: 0 0 0 3px rgba(4, 146, 254, 0.2);
}

.planos-slider-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 2rem 0;
}

.planos-range-slider {
  width: 100%;
  max-width: 500px;
  height: 10px;
  border-radius: 8px;
  background: linear-gradient(to right, #0492fe 0%, #0492fe 3.8%, #ddd 3.8%, #ddd 100%);
  outline: none;
  transition: background 150ms ease;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.planos-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background-color: #2c3e50;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease;
}

.planos-range-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background-color: #2c3e50;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease;
}

.planos-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.planos-range-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}

.planos-price-wrapper {
  margin-top: 1.5rem;
}

.planos-price-block {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.price-currency {
  font-size: 1rem;
  font-weight: 400;
}

.price-value strong {
  font-size: 1.75rem;
  font-weight: 700;
}

.price-period {
  font-size: 1.1rem;
  font-weight: 400;
  color: #4b5563;
}

.price-action-link {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.3rem;
}

.price-action-link a {
  color: #0492fe;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.price-action-link a:hover {
  color: #007ce0;
}

.planos-disclaimer-box {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
}

.planos-disclaimer-box a {
  color: #111827;
  transition: color 0.2s ease;
}

.planos-disclaimer-box a:hover {
  color: #0492fe;
}

/* ==========================================================================
   Planos até 20 Alunos Page Styles
   ========================================================================== */
.planos-20-section {
  background-color: #f7f7f7;
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 80vh;
}

@media (max-width: 768px) {
  .planos-20-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.planos-20-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.planos-20-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .planos-20-title {
    font-size: 1.85rem;
  }
}

.planos-20-subtitle {
  font-size: 1.15rem;
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto;
}

.planos-20-back-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 960px;
  margin: 0 auto 1.5rem auto;
}

.btn-voltar-planos {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background-color: #0492fe;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(4, 146, 254, 0.25);
}

.btn-voltar-planos:hover {
  background-color: #0077e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(4, 146, 254, 0.35);
  color: #ffffff;
}

.planos-cycle-wrapper {
  max-width: 960px;
  margin: 0 auto 2.5rem auto;
  background-color: #eef2f7;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
  .planos-cycle-wrapper {
    padding: 1.5rem 1rem;
    margin-bottom: 1.75rem;
  }
}

.planos-cycle-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.planos-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

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

.planos-card-box {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.planos-card-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Card Header Variants */
.planos-card-header {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.planos-card-header-pix {
  background-color: #2e75f1;
}

.planos-card-header-boleto {
  background-color: #000000;
}

.planos-card-title-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.planos-card-icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

.planos-card-icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.planos-card-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.badge-melhor-condicao {
  background-color: #91e402;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Card Body Variants */
.planos-card-body {
  padding: 2rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.planos-card-body-pix {
  background-color: #dcecff;
}

.planos-card-body-boleto {
  background-color: #ffffff;
}

.planos-card-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.planos-card-discount {
  font-size: 1rem;
  font-weight: 700;
  color: #2e75f1;
  margin-bottom: 0.4rem;
}

.planos-card-installment {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.4rem;
}

.planos-card-fee {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b5563;
}

.planos-card-fee-highlight {
  font-size: 0.95rem;
  font-weight: 800;
  color: #16a34a;
}

.planos-cycle-cta {
  text-align: center;
}

.btn-checkout-plano {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 3.5rem;
  background-color: #2e75f1;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(46, 117, 241, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-checkout-plano:hover {
  background-color: #1c61db;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 117, 241, 0.45);
  color: #ffffff;
}

.planos-20-legal {
  max-width: 820px;
  margin: 3rem auto 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b5563;
}

.planos-20-legal p {
  margin-bottom: 1rem;
}

.planos-20-legal a {
  color: #111827;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.planos-20-legal a:hover {
  color: #0492fe;
}

/* Minimal Reduced Header for Device Connection Pages */
.header-minimal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #2e75f1;
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.header-minimal .logo img {
  height: 38px;
  width: auto;
}

.btn-voltar-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background-color: #009bf9;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-voltar-site:hover {
  background-color: #008be0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.btn-voltar-site svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 576px) {
  .header-minimal {
    padding: 10px 0;
  }

  .header-minimal .logo img {
    height: 30px;
    width: auto;
  }

  .btn-voltar-site {
    padding: 7px 14px;
    font-size: 0.82rem;
  }
}

/* Cookie Consent Floating Bar */
.cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 900px;
  background-color: #ffffff;
  color: #334155;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18), 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  font-size: 0.9rem;
  line-height: 1.45;
  transition: all 0.3s ease;
}

.cookie-bar span {
  color: #334155;
}

.cookie-bar a {
  color: #0492fe;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.cookie-bar a:hover {
  color: #0077e6;
}

.btn-cookie-accept {
  background-color: #0492fe;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-cookie-accept:hover {
  background-color: #0077e6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(4, 146, 254, 0.35);
}

@media (max-width: 768px) {
  .cookie-bar {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 20px;
  }

  .btn-cookie-accept {
    width: 100%;
    max-width: 240px;
    padding: 10px 20px;
  }
}

/* Minimal Header for Checkout Page (Sticky Blue) */
.header-minimal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #2b76f6;
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-voltar-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0492fe;
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}

.btn-voltar-site:hover {
  background: #0077da;
  transform: translateY(-1px);
}

.header-minimal-security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(37, 211, 102, 0.22);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.checkout-main-section {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.checkout-header-title {
  margin-bottom: 35px;
}

.checkout-header-title h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.checkout-header-title p {
  color: #64748b;
  font-size: 1.05rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.checkout-card-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-card-summary {
  background: linear-gradient(145deg, #f0f7ff 0%, #e6f0fa 100%);
  border: 1px solid #bae0ff;
  box-shadow: 0 4px 20px rgba(4, 146, 254, 0.08);
}

.checkout-card-summary .checkout-card-header {
  border-bottom: 1px solid #d0e7ff;
}

.checkout-card-summary .checkout-card-header h2 {
  color: #0264b3;
}

.style-mt-20 {
  margin-top: 20px;
}

.checkout-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.checkout-card-header h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #0492fe;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.checkout-form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
}

.checkout-form-group input,
.checkout-form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #0f172a;
  outline: none;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.checkout-form-group input:focus,
.checkout-form-group select:focus {
  border-color: #0492fe;
  box-shadow: 0 0 0 3px rgba(4, 146, 254, 0.15);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

/* Order Summary */
.summary-plan-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #475569;
}

.summary-label {
  font-weight: 600;
}

.summary-value {
  font-weight: 700;
  color: #0f172a;
}

.summary-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 6px 0;
}

.summary-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.summary-total strong {
  color: #0492fe;
  font-size: 1.4rem;
}

/* Payment Tabs */
.payment-tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.payment-tab-btn:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.payment-tab-btn.active {
  background: #f0f9ff;
  border-color: #0492fe;
  color: #0492fe;
  box-shadow: 0 4px 12px rgba(4, 146, 254, 0.12);
}

.tab-badge {
  font-size: 0.65rem;
  background: #25d366;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-tab-content {
  display: none;
}

.payment-tab-content.active {
  display: block;
  animation: fadeInTab 0.25s ease forwards;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-info-banner {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.pix-banner {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.boleto-banner {
  background: #fefce8;
  border: 1px solid #fef08a;
  color: #854d0e;
}

.banner-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.banner-text strong {
  display: block;
  margin-bottom: 4px;
}

.banner-text p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Terms Checkbox */
.checkout-terms-box {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #475569;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0492fe;
  cursor: pointer;
}

.terms-text a {
  color: #0492fe;
  text-decoration: underline;
  font-weight: 600;
}

.btn-submit-checkout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00b0ff 0%, #0492fe 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin-top: 24px;
  box-shadow: 0 8px 24px rgba(4, 146, 254, 0.35);
  transition: all 0.25s ease;
}

.btn-submit-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(4, 146, 254, 0.45);
}

.checkout-security-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  gap: 10px;
}

.sec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.sec-item svg {
  color: #25d366;
  flex-shrink: 0;
}

/* Responsive Media Queries for Checkout */
@media (max-width: 991px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

  .form-row-2col,
  .form-row-3col {
    grid-template-columns: 1fr;
  }

  .header-minimal-security-badge {
    display: none;
  }

  .payment-tabs-nav {
    flex-direction: column;
  }

  .checkout-security-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* Form Validation Error Styles */
.checkout-form-group input.input-error,
.checkout-form-group select.input-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.field-error-msg {
  color: #ef4444;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* Full Page Contact Form Loading Overlay */
.form-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(12, 22, 33, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-loading-overlay.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.form-loading-content {
  background: #ffffff;
  padding: 2.5rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: 380px;
  width: 88%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.form-loading-overlay.active .form-loading-content {
  transform: scale(1);
}

.loading-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(4, 146, 254, 0.18);
  border-top-color: #0492fe;
  border-radius: 50%;
  animation: formSpin 0.8s cubic-bezier(0.6, 0.2, 0.4, 0.8) infinite;
  margin: 0 auto 1.25rem auto;
}

@keyframes formSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.35rem 0;
  letter-spacing: -0.01em;
}

.loading-subtext {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}