/* ===================================
   VARIÁVEIS GLOBAIS
=================================== */
/*
:root {
  --primary-color: #6c47ea;
  --primary-hover: #5a3bc7;
  --primary-dark: #513ba3;
  --primary-light: #f0ebff;
  --secondary-color: #7c5ff0;
  --accent-color: #ffc107;
  --text-dark: #1a1a1a;
  --text-muted: #777777;
  --bg-light: #f8faff;
  --bg-white: #ffffff;
  --border-color: #e8e8e8;
  --border-light: #f0f0f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 10px 40px rgba(108, 71, 234, 0.15);
  --radius-sm: 12px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-full: 50px;
}
*/

:root {
  --primary-color: #0b4fa3;
  --primary-hover: #0a3f82;
  --primary-dark: #072e61;
  --primary-light: #eef5ff;
  --secondary-color: #1e73d8;
  --accent-color: #ff6a2a;
  --text-dark: #0f1a2b;
  --text-muted: #6b7280;
  --bg-light: #f4f8ff;
  --bg-white: #ffffff;
  --border-color: #e4ecf7;
  --border-light: #f1f5fb;
  --shadow-sm: 0 1px 3px rgba(11, 79, 163, 0.08);
  --shadow-md: 0 2px 8px rgba(11, 79, 163, 0.12);
  --shadow-lg: 0 4px 16px rgba(11, 79, 163, 0.18);
  --shadow-xl: 0 10px 40px rgba(11, 79, 163, 0.25);
  --radius-sm: 12px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-full: 50px;
}

/* ===================================
   RESET E ESTILOS GLOBAIS
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f5f7ff 100%);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

/* ===================================
   TIPOGRAFIA
=================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===================================
   NAVBAR / HEADER
=================================== */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 0.0rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(108, 71, 234, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  height: 60px;
  width: auto;
}

.navbar-nav {
  gap: 0.5rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.navbar-nav .nav-link.active::after {
  width: 80%;
  bottom: -8px;
}

.navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-collapse {
  position: relative;
}

/* ===================================
   BOTÕES
=================================== */
.btn {
  border-radius: var(--radius-full);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:focus {
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(108, 71, 234, 0.3);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-hover) 0%, #6d54cc 100%);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.btn-light:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-outline-light {
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  background-color: transparent;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
}

.btn-block, .btn-w-100, .w-100 {
  width: 100%;
}

/* ===================================
   BADGES
=================================== */
.badge {
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  display: inline-block;
  text-transform: uppercase;
  animation: slideInDown 0.5s ease;
}

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

.badge-popular {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffb300 100%);
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.badge-recommended {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffb300 100%);
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.badge-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   SEÇÕES
=================================== */
section {
  padding: 5rem 0;
  position: relative;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0ebff 100%);
  padding: 4rem 0;
}

.page-header .badge-label {
  margin-bottom: 1.5rem;
}

.page-header h1 {
  margin-bottom: 1.5rem;
}

.page-header .lead {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   HERO SECTION
=================================== */
.hero-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0ebff 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 71, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 95, 240, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.hero-section .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.hero-section .d-flex.gap-2 {
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-section .btn {
  gap: 0.5rem;
}

/* ===================================
   STAT CARDS
=================================== */
.stat-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbff 100%);
  border: 1px solid rgba(108, 71, 234, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(108, 71, 234, 0.2);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===================================
   INFRASTRUCTURE SECTION
=================================== */
.infrastructure-section {
  background-color: var(--bg-white);
  padding: 5rem 0;
  position: relative;
}

.infrastructure-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 71, 234, 0.2), transparent);
}

.infrastructure-section .text-center {
  margin-bottom: 3rem;
}

.infrastructure-section h2 {
  margin-bottom: 1rem;
}

.infrastructure-section > .container > .text-center > p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.feature-box {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbff 100%);
  border: 1px solid rgba(108, 71, 234, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(108, 71, 234, 0.1) 0%, transparent 70%);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(108, 71, 234, 0.2);
}

.feature-box:hover::before {
  right: -50px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108, 71, 234, 0.1) 0%, rgba(124, 95, 240, 0.05) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 71, 234, 0.3);
}

.feature-box h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===================================
   VPS INFO BAR
=================================== */
.vps-info-bar {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbff 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1rem;
  margin-bottom: 0rem;
}

.vps-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}

.vps-info-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.vps-info-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width:768px) {
  .vps-info-grid {
    grid-template-columns: repeat(2,1fr);
    row-gap: 1.2rem;
  }
}

/* ===================================
   PRICING SECTION
=================================== */
.pricing-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0ebff 100%);
  padding: 5rem 0;
  position: relative;
}

.pricing-section .text-center {
  margin-bottom: 3rem;
}

.pricing-section h2 {
  margin-bottom: 1rem;
}

.pricing-section > .container > .text-center > p {
  font-size: 1rem;
  color: var(--text-muted);
}

.plan-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbff 100%);
  border: 1px solid rgba(108, 71, 234, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(108, 71, 234, 0.2);
}

.plan-card h5 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.plan-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.plan-card-featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  transform: scale(1.05);
  z-index: 10;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.plan-card-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.plan-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 50px rgba(108, 71, 234, 0.4);
}

.plan-card-featured h5,
.plan-card-featured p {
  color: white;
  position: relative;
  z-index: 2;
}

.plan-card-featured .badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.badge-plan {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0.8rem 0;
}

.plan-card-featured .badge-plan {
  color: white;
}

.plan-card .btn {
  margin-top: auto;
}

/* ===================================
   PRICING CARDS (PLANOS)
=================================== */
.plans-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0ebff 100%);
  padding: 5rem 0;
  position: relative;
}

.pricing-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbff 100%);
  border: 1px solid rgba(108, 71, 234, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s ease;
}

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

.pricing-card:nth-child(2) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(4) {
  animation-delay: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(108, 71, 234, 0.2);
}

.pricing-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.price-tag {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.3rem 0 0.2rem 0;
}

.price-tag .period {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.description {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  text-align: left;
  margin: 1.2rem 0;
  flex-grow: 1;
  padding: 0;
}

.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  padding-left: 1.3rem;
  transition: all 0.3s ease;
}

.features-list li:hover {
  color: var(--primary-color);
  padding-left: 1.6rem;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
  animation: checkmark 0.5s ease;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

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

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  transform: scale(1.08);
  z-index: 10;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.pricing-card.featured::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 20px 50px rgba(108, 71, 234, 0.4);
}

.pricing-card.featured h4,
.pricing-card.featured .price-tag,
.pricing-card.featured .description {
  color: white;
  position: relative;
  z-index: 2;
}

.pricing-card.featured .price-tag {
  background: none;
  -webkit-text-fill-color: unset;
}

.pricing-card.featured .features-list li {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.pricing-card.featured .features-list li::before {
  color: white;
}

.pricing-card.featured .features-list li:hover {
  color: white;
}

.pricing-card.featured .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: #1a1a1a;
}

.pricing-card.featured .badge-recommended {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin-bottom: 0.3rem;
  display: block;
  margin: 0 auto 0.8rem auto;
}

.pricing-card .btn {
  margin-top: 1rem;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.pricing-card.featured .btn-light {
  color: var(--primary-color);
}

.pricing-card.featured .btn-light:hover {
  background-color: white;
  color: var(--primary-color);
}

/* ===================================
   OS SECTION
=================================== */
.os-section {
  background-color: var(--bg-white);
  padding: 5rem 0;
  position: relative;
}

.os-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 71, 234, 0.2), transparent);
}

.os-section .text-center {
  margin-bottom: 3rem;
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.os-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0ebff 100%);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 71, 234, 0.05);
}

.os-item:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(124, 95, 240, 0.1) 100%);
  border-color: rgba(108, 71, 234, 0.2);
  box-shadow: 0 8px 20px rgba(108, 71, 234, 0.15);
}

/*
.os-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
*/

.os-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1rem;
}

.os-icon img{
  width:48px;
  height:48px;
  object-fit:contain;
  transition:transform .3s ease;
}

/*
.os-item:hover .os-icon {
  transform: scale(1.2) rotate(-15deg);
}
*/

.os-item:hover .os-icon img{
  transform:scale(1.5) rotate(-15deg);
}

.os-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* ===================================
   TESTIMONIALS
=================================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0ebff 100%);
  padding: 5rem 0;
  position: relative;
}

.testimonials-section .text-center {
  margin-bottom: 3rem;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbff 100%);
  border: 1px solid rgba(108, 71, 234, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(108, 71, 234, 0.2);
}

.testimonial-card p:first-child {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card .d-flex {
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(108, 71, 234, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(108, 71, 234, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(108, 71, 234, 0.5);
  }
}

.testimonial-card .fw-bold {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.testimonial-card .small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===================================
   CTA SECTION
=================================== */
.cta-section {
  background-color: var(--bg-white);
  padding: 4rem 0;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbff 100%);
  border: 2px solid rgba(108, 71, 234, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 71, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(124, 95, 240, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-box p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-box .btn {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* ===================================
   FOOTER
=================================== */
footer {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbff 100%);
  border-top: 1px solid rgba(108, 71, 234, 0.1);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
  padding: 0rem 0;
  margin-top: 3rem;
  position: relative;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

footer .footer-left {
  flex: 0 0 auto;
}

.footer-left img {
  height: 40px;
  width: auto;
}

footer .footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

footer .footer-right {
  flex: 0 0 auto;
  text-align: right;
}

footer p:first-child {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 0;
}

.social-links a {
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
}

.social-links a:hover {
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(108, 71, 234, 0.3);
}

footer .text-muted.small {
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

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

  footer .footer-left,
  footer .footer-center,
  footer .footer-right {
    flex: 1;
    width: 100%;
  }

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

  .social-links {
    gap: 1rem;
  }

  .social-links a {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 1.5rem 0;
  }

  footer p:first-child {
    font-size: 1rem;
  }

  footer .text-muted.small {
    font-size: 0.75rem;
  }

  .social-links {
    gap: 0.8rem;
  }

  .social-links a {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

/* ===================================
   UTILITÁRIOS
=================================== */
.text-primary {
  color: var(--primary-color) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-white {
  background-color: var(--bg-white) !important;
}

.lead {
  font-size: 1.05rem;
}

.display-3 {
  font-size: 3.2rem;
}

.display-4 {
  font-size: 2.5rem;
}

.display-5 {
  font-size: 2.2rem;
}

.fw-bold {
  font-weight: 700;
}

.fw-normal {
  font-weight: 400;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

/* ===================================
   SCROLL ANIMATION
=================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .display-3 {
    font-size: 2.2rem;
  }

  .display-4 {
    font-size: 1.8rem;
  }

  .display-5 {
    font-size: 1.6rem;
  }

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

  .pricing-card.featured:hover,
  .plan-card-featured:hover {
    transform: translateY(-8px);
  }

  .os-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  section {
    padding: 3rem 0;
  }

  .hero-section {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .feature-box {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 1.2rem;
  }

  .price-tag {
    font-size: 1.8rem;
  }

  .features-list {
    margin: 1rem 0;
  }

  .features-list li {
    padding: 0.4rem 0 0.4rem 1.3rem;
    font-size: 0.8rem;
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 1.5rem;
  }

  .cta-features {
    gap: 1rem;
    flex-direction: column;
  }

  .os-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .os-item {
    padding: 1.5rem 1rem;
  }

  .plan-card {
    padding: 1.2rem;
  }

  footer {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 0.0rem 0;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-brand img {
    height: 60px;
  }

  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem !important;
  }

  .hero-section {
    padding: 2.5rem 0;
  }

  .hero-section h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero-section .lead {
    font-size: 0.95rem;
  }

  .hero-section .d-flex.gap-2 {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .hero-section .btn {
    width: 100%;
  }

  .stat-card {
    padding: 1.2rem 0.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .page-header {
    padding: 2.5rem 0;
  }

  .page-header h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .badge-label {
    font-size: 0.7rem;
  }

  .feature-box {
    padding: 1.2rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .feature-box h5 {
    font-size: 1rem;
  }

  .pricing-card,
  .plan-card {
    padding: 1rem;
  }

  .price-tag {
    font-size: 1.6rem;
  }

  .features-list {
    margin: 0.8rem 0;
  }

  .features-list li {
    padding: 0.3rem 0 0.3rem 1.2rem;
    font-size: 0.8rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.7rem 2rem;
    font-size: 0.95rem;
  }

  .pricing-card .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .cta-box {
    padding: 1.5rem 1rem;
  }

  .cta-box h2 {
    font-size: 1.3rem;
  }

  .cta-box p {
    font-size: 0.9rem;
  }

  .cta-features {
    gap: 0.8rem;
    flex-direction: column;
    font-size: 0.9rem;
  }

  .os-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .os-item {
    padding: 1rem;
  }

  .os-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .os-item p {
    font-size: 0.8rem;
  }

  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-card p:first-child {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.95rem;
  }

  .testimonial-card .fw-bold {
    font-size: 0.9rem;
  }

  footer {
    padding: 1.5rem 0;
  }

  .social-links {
    gap: 1rem;
  }

  .social-links a {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}