/* 
   Vexo Digital - Replicación de Estilo Premium
   Estilo enfocado en Marketing de Contenidos y Redes Sociales
*/

:root {
  --bg-obsidian: #050505;
  --bg-black: #000000;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-card-hover: rgba(255, 255, 255, 0.2);
  --silver: #a8a9ad;
  --silver-bright: #e2e8f0;
  --silver-glow: rgba(168, 169, 173, 0.1);
  --silver-glow-strong: rgba(168, 169, 173, 0.3);
  --text-white: #ffffff;
  --text-grey: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-dark: #050505;
  
  --font-syne: 'Outfit', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
  --font-inter: 'Inter', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-white);
  overflow-x: hidden;
}

body {
  font-family: var(--font-outfit);
  background-color: var(--bg-obsidian);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--silver);
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 80px;
  }
}

/* Typography Helpers */
.font-syne {
  font-family: var(--font-syne);
}

.silver-gradient {
  background: linear-gradient(135deg, var(--text-white) 0%, var(--silver) 50%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-white {
  color: var(--text-white);
  font-weight: 500;
}

.section-tag {
  color: rgba(168, 169, 173, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 14px 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--text-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--text-white);
  color: var(--bg-black);
  border-color: var(--text-white);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 100;
  opacity: 0;
  transform: translateX(-20px);
  transition: var(--transition-smooth);
}

.whatsapp-floating.visible {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-glow {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(20px);
  border-radius: 50%;
  transform: scale(1.5);
  transition: var(--transition-smooth);
}

.whatsapp-icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  background: var(--bg-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.whatsapp-btn-link:hover .whatsapp-icon-wrapper {
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  color: var(--silver);
}

.whatsapp-btn-link:hover .whatsapp-glow {
  background: rgba(255, 255, 255, 0.15);
}

.whatsapp-tooltip {
  position: absolute;
  left: 64px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.whatsapp-tooltip span {
  font-size: 10px;
  color: var(--text-grey);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.whatsapp-btn-link:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Glassmorphism Styles */
.glass {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  transition: var(--transition-smooth);
}

.glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
}

.glass-premium {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 40px;
  transition: var(--transition-smooth);
}

.glass-premium:hover {
  border-color: rgba(168, 169, 173, 0.2);
}

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- SECTIONS --- */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-black);
  overflow: hidden;
  padding-top: 80px;
}

.radial-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(168, 169, 173, 0.05), transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  min-height: calc(100vh - 80px);
}

@media (min-width: 1024px) {
  .hero-container {
    min-height: 100vh;
    align-items: center;
    padding-top: 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-content {
    align-items: center;
    text-align: center;
    gap: 40px;
    max-width: 900px;
  }
}

.hero-tag {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-tag {
    font-size: 13px;
  }
}

.hero-title {
  font-size: 11vw;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

.word-line {
  display: block;
  line-height: 0.9;
}

.word-line.font-light {
  font-weight: 300;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 8vw;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6.5vw;
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 120px;
  }
}

.hero-description-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

@media (min-width: 1024px) {
  .hero-description-wrapper {
    align-items: flex-start;
  }
}

.hero-description {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-grey);
  max-width: 320px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 20px;
    max-width: 420px;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 22px;
    max-width: 340px;
  }
}

.hero-media-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-media-wrapper {
    justify-content: flex-end;
  }
}

.media-glow {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.03);
  filter: blur(80px);
  border-radius: 50%;
  transform: scale(1.1);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .media-glow {
    filter: blur(140px);
  }
}

.hero-video {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.05) contrast(1.15);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-video {
    max-width: 450px;
  }
}

@media (min-width: 1024px) {
  .hero-video {
    max-width: 580px;
  }
}

/* Identity Section */
.identity-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-black);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .identity-section {
    padding: 140px 0;
  }
}

.identity-container {
  display: grid;
  grid-template-cols: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .identity-container {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
  }
}

.identity-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.identity-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

@media (min-width: 768px) {
  .identity-title {
    font-size: 52px;
  }
}

.identity-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.identity-lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-grey);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .identity-lead {
    font-size: 22px;
  }
}

.identity-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .identity-body {
    font-size: 17px;
  }
}

.identity-stats {
  display: flex;
  gap: 40px;
  padding-top: 16px;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 26px;
  }
}

.stat-label {
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 4px;
  font-weight: 600;
}

.vertical-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(168, 169, 173, 0.15), transparent);
  display: none;
}

@media (min-width: 1024px) {
  .vertical-divider {
    display: block;
  }
}

/* Services Bento Grid Section */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-black);
}

@media (min-width: 1024px) {
  .services-section {
    padding: 140px 0;
  }
}

.services-header {
  margin-bottom: 60px;
  text-align: center;
}

@media (min-width: 1024px) {
  .services-header {
    text-align: left;
    margin-bottom: 80px;
  }
}

.services-title {
  font-size: 36px;
  font-weight: 800;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .services-title {
    font-size: 52px;
  }
}

/* Bento Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Bento Grid Placements */
@media (min-width: 768px) {
  .card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: auto;
  }
  
  .card-small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: auto;
  }
  
  .card-medium {
    grid-column: span 2;
    grid-row: span 1;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

.card-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(168, 169, 173, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: var(--transition-smooth);
  margin-bottom: 24px;
}

.service-card:hover .card-icon-wrapper {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.card-icon-wrapper-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(168, 169, 173, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  flex-shrink: 0;
  transition: var(--transition-smooth);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .card-icon-wrapper-circle {
    margin-bottom: 0;
  }
}

.service-card:hover .card-icon-wrapper-circle {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}

@media (min-width: 768px) {
  .card-large .card-title {
    font-size: 28px;
  }
}

.card-description {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .card-large .card-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
  }
  
  .card-medium .card-description {
    font-size: 13px;
  }
}

/* Pricing Section */
.pricing-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-obsidian);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pricing-section {
    padding: 140px 0;
  }
}

.pricing-glow-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 169, 173, 0.03), transparent 70%);
  transform: translate(30%, -30%);
  pointer-events: none;
}

.pricing-glow-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 169, 173, 0.03), transparent 70%);
  transform: translate(-30%, 30%);
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 10;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-size: 36px;
  font-weight: 800;
  margin-top: 16px;
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .pricing-title {
    font-size: 52px;
  }
}

/* Currency Toggle Styles */
.currency-toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.95);
}

.currency-toggle-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(168, 169, 173, 0.07);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(168, 169, 173, 0.15);
}

.currency-toggle-bar {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.currency-btn {
  position: relative;
  padding: 12px 32px;
  border: none;
  background: transparent;
  border-radius: 24px;
  cursor: pointer;
  outline: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.currency-text {
  font-size: 11px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  position: relative;
  z-index: 10;
  transition: var(--transition-fast);
}

.currency-btn:hover .currency-text {
  color: var(--text-white);
}

.btn-bg-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

/* Active Currency Button State */
.currency-btn.active .currency-text {
  color: var(--text-dark);
}

.currency-btn.active .btn-bg-glow {
  background: var(--silver);
  box-shadow: 0 0 20px rgba(168, 169, 173, 0.35);
  opacity: 1;
}

/* Categories & Dividers */
.pricing-category-wrapper {
  margin-bottom: 70px;
}

.category-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.divider-line {
  height: 1px;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.06);
}

.category-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .category-title {
    font-size: 17px;
    letter-spacing: 0.25em;
  }
}

.subtitle-grey {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* Pricing Grid & Cards */
.pricing-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 24px;
}

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

.price-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .price-card {
    padding: 44px 36px;
  }
}

.price-card.recommended {
  border-color: rgba(168, 169, 173, 0.25);
  box-shadow: 0 0 40px rgba(168, 169, 173, 0.05);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--silver);
  color: var(--text-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(168, 169, 173, 0.2);
}

.card-top {
  margin-bottom: 32px;
}

.plan-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-grey);
  margin-bottom: 20px;
  display: block;
}

.price-card.recommended .plan-name {
  color: var(--silver-bright);
}

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

.plan-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-white);
  transition: var(--transition-fast);
}

@media (min-width: 1024px) {
  .plan-price {
    font-size: 44px;
  }
}

.plan-period {
  font-size: 13px;
  color: var(--text-muted);
}

.plan-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(168, 169, 173, 0.07);
  border: 1px solid rgba(168, 169, 173, 0.12);
}

.offer-label {
  font-size: 9px;
  font-weight: 500;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-value {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-white);
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 12px;
}

.check-icon {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.check-icon.active {
  background: rgba(168, 169, 173, 0.15);
  border-color: rgba(168, 169, 173, 0.3);
  color: var(--silver-bright);
}

.feature-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.btn-card {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(168, 169, 173, 0.3);
  transform: translateY(-1px);
}

.btn-card-primary {
  background: var(--silver);
  color: var(--text-dark);
  border: 1px solid var(--silver);
  font-weight: 800;
}

.btn-card-primary:hover {
  background: var(--text-white);
  border-color: var(--text-white);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Specialty Cards Styles */
.hover-border-silver:hover {
  border-color: rgba(168, 169, 173, 0.25);
}

.card-icon-round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(168, 169, 173, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(168, 169, 173, 0.1);
}

.price-card:hover .card-icon-round {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.plan-name-spec {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.plan-price-spec {
  font-size: 26px;
  font-weight: 800;
  color: var(--silver);
}

.spec-label {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-left: 6px;
}

.card-features-spec {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.spec-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.check-dot {
  margin-top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--silver);
  flex-shrink: 0;
}

.btn-spec-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-spec-link:hover {
  color: var(--text-white);
  transform: translateX(3px);
}

/* Extras & Requirements Layout */
.extras-requirements-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 32px;
  margin-top: 48px;
}

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

/* Extras Card */
.extras-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-radius: 40px;
}

@media (min-width: 768px) {
  .extras-card {
    padding: 40px;
  }
}

.extras-header, .requirements-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.extras-title, .requirements-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

.extras-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 16px;
}

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

.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
}

.extra-item:hover {
  border-color: rgba(168, 169, 173, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.extra-name {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-grey);
  transition: var(--transition-fast);
}

.extra-item:hover .extra-name {
  color: var(--text-white);
}

.extra-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--silver);
}

/* Requirements Card */
.requirements-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .requirements-card {
    padding: 40px;
  }
}

.requirements-intro {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.requirements-list {
  list-style: none;
  display: grid;
  grid-template-cols: 1fr;
  gap: 16px;
}

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

.requirements-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-grey);
}

.bullet-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--silver);
  flex-shrink: 0;
}

.requirements-footer-badge {
  margin-top: 32px;
  padding: 14px;
  background: rgba(168, 169, 173, 0.03);
  border: 1px solid rgba(168, 169, 173, 0.06);
  border-radius: 12px;
  text-align: center;
}

.footer-badge-text {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Partnership Section */
.partnership-section {
  padding: 100px 0;
  background-color: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

@media (min-width: 1024px) {
  .partnership-section {
    padding: 140px 0;
  }
}

.partnership-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.partnership-title {
  font-size: 32px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .partnership-title {
    font-size: 48px;
  }
}

.partnership-card {
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
  border-radius: 48px;
}

@media (min-width: 768px) {
  .partnership-card {
    padding: 70px 60px;
  }
}

.partnership-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0.6;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .partnership-logos {
    flex-direction: row;
    justify-content: center;
    gap: 44px;
  }
}

.logo-vexo {
  font-family: var(--font-syne);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text-white);
}

.logo-divider {
  width: 32px;
  height: 1px;
  background: rgba(168, 169, 173, 0.2);
}

@media (min-width: 768px) {
  .logo-divider {
    width: 1px;
    height: 24px;
  }
}

.logo-noweb {
  font-family: var(--font-syne);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--silver);
}

.partnership-description {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .partnership-description {
    font-size: 19px;
  }
}

.partnership-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 169, 173, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-black);
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 140px 0;
  }
}

.contact-container {
  display: grid;
  grid-template-cols: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .contact-container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
  }
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

@media (min-width: 1024px) {
  .contact-text {
    text-align: left;
  }
}

.contact-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 56px;
  }
}

.contact-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-subtitle {
    margin: 0;
  }
}

.contact-form-wrapper {
  padding: 32px 24px;
  border-radius: 40px;
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 44px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-left: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px 24px;
  color: var(--text-white);
  font-family: var(--font-outfit);
  font-size: 15px;
  font-weight: 300;
  transition: var(--transition-fast);
  outline: none;
}

.form-textarea {
  resize: none;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.15);
}

.form-input:focus, .form-textarea:focus {
  border-color: rgba(168, 169, 173, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.02);
}

.btn-submit {
  width: 100%;
  padding: 20px;
  background: var(--silver);
  color: var(--text-dark);
  border: none;
  border-radius: 16px;
  font-family: var(--font-outfit);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(168, 169, 173, 0.15);
  transition: var(--transition-smooth);
  margin-top: 16px;
}

.btn-submit:hover {
  background: var(--text-white);
  color: var(--bg-black);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Footer Styles */
.site-footer {
  padding: 80px 0 40px 0;
  background-color: var(--bg-obsidian);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 320px;
}

.footer-brand-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-links-grid {
    gap: 80px;
  }
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.links-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.2);
}

.footer-link {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--silver);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.copyright {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.2);
}

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

.bottom-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: var(--transition-fast);
}

.bottom-link:hover {
  color: var(--text-white);
}

/* --- ADDITIONS FOR PRICING UPDATES --- */

/* Highlight conversion hook (WhatsApp Guarantee) */
.highlight-conversion {
  color: var(--text-white);
  font-weight: 600;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  border-left: 2px solid var(--silver);
  padding-left: 8px;
  display: block;
  margin-top: 6px;
  transition: var(--transition-smooth);
}

.price-card:hover .highlight-conversion {
  border-left-color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Plus Adicional Banner */
.plus-banner {
  margin: 40px 0;
  padding: 24px 36px;
  border-radius: 24px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.plus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.plus-banner:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.03);
}

.plus-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.plus-icon {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

.plus-text {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-grey);
  line-height: 1.6;
}

.plus-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-white);
  margin-right: 6px;
  display: inline-block;
}

.plus-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-white);
  background: linear-gradient(135deg, var(--text-white) 0%, var(--silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: var(--transition-fast);
}

.plus-banner:hover .plus-price {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments for plus banner */
@media (max-width: 768px) {
  .plus-banner {
    padding: 24px;
    margin: 32px 0;
  }
  
  .plus-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .plus-icon {
    font-size: 34px;
  }
  
  .plus-title {
    display: block;
    margin-bottom: 4px;
    margin-right: 0;
  }
  
  .plus-price {
    display: inline-block;
  }
}

