/* CSS Variables */
:root {
  --primary: #007bff;
  --secondary: #6c757d;
  --dark: #343a40;
  --light: #f8f9fa;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --spacing: 1rem;
  --font-family: 'Arial', sans-serif;
  --orange: #ff6600;
  --blue: #007bff;
}

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

.skip-to-content {
  position: absolute;
  left: -9999px;
}

.skip-to-content:focus {
  left: 6px;
  top: 7px;
  z-index: 100;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem var(--spacing);
  background-color: var(--orange);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
  transition: background-color 0.3s ease;
}

header.header-scrolled {
  background-color: var(--orange);
}

/* Header azul cuando pasa el hero */
header.header-blue {
  background-color: var(--blue) !important;
}

header.header-scrolled .nav-list a {
  color: white;
}

header.header-scrolled .nav-list a.active {
  color: var(--orange);
  font-weight: bold;
}

/* Cuando el header es azul, el link activo es naranja */
header.header-blue .nav-list a.active {
  color: var(--orange);
  font-weight: bold;
}

.logo-container img {
  height: 70px;
  transition: all 0.3s ease;
}

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

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--spacing);
}

.nav-list a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
}

.nav-list a.active {
  color: var(--blue);
  font-weight: bold;
}

.nav-list li {
  position: relative;
}

.portfolio-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--orange);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: var(--spacing);
  display: none;
  z-index: 20;
  min-width: 200px;
}

.portfolio-submenu a {
  display: block;
  padding: 0.5rem 1rem;
  background-color: white;
  color: var(--orange);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.portfolio-submenu a:hover {
  background-color: var(--orange);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.portfolio-submenu.show {
  display: block;
}

/* Asegurar que el submenu siempre tenga colores correctos */
header.header-scrolled .portfolio-submenu a {
  color: var(--orange);
  background-color: white;
}

header.header-scrolled .portfolio-submenu a:hover {
  background-color: var(--orange);
  color: white;
}

/* ========================================
   HERO SECTION - ULTRA PROFESSIONAL DESIGN
   ======================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #0056b3 0%, #007BFF 50%, #0066cc 100%);
  color: white;
  text-align: center;
  overflow: hidden;
  animation: hero-gradient-shift 8s ease-in-out infinite;
}

@keyframes hero-gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Background Decorative Elements */
.hero-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
}

.hero-circle-1 {
  width: 600px;
  height: 600px;
  top: -300px;
  right: -200px;
  animation: float-circle-1 20s ease-in-out infinite;
}

.hero-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  animation: float-circle-2 15s ease-in-out infinite;
}

.hero-circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-circle-3 12s ease-in-out infinite;
}

@keyframes float-circle-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

@keyframes float-circle-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -20px) scale(0.9);
  }
}

@keyframes float-circle-3 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -60%) scale(1.15);
  }
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  animation: hero-fade-in 1.2s ease-out;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Badges */
.hero-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  animation: hero-fade-in 1.2s ease-out 0.2s both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-badge .badge-icon {
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hero Headline */
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  animation: hero-fade-in 1.2s ease-out 0.4s both;
}

.hero-headline-top {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.hero-headline-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Subheadline */
.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 3rem;
  animation: hero-fade-in 1.2s ease-out 0.6s both;
}

/* Social Proof Stats */
.hero-social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: hero-fade-in 1.2s ease-out 1s both;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.5rem 3rem;
  }
  
  .hero-headline-top {
    font-size: 1.25rem;
  }
  
  .hero-headline-main {
    font-size: 2.5rem;
  }
  
  .hero-subheadline {
    font-size: 1.125rem;
  }
  
  .hero-circle-1,
  .hero-circle-2,
  .hero-circle-3 {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .hero-badges {
    gap: 0.75rem;
  }
  
  .hero-badge {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }
  
  .hero-headline-top {
    font-size: 1.125rem;
  }
  
  .hero-headline-main {
    font-size: 2rem;
  }
  
  .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-social-proof {
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .proof-divider {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1rem 2.5rem;
  }
  
  .hero-badges {
    gap: 0.5rem;
  }
  
  .hero-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
  }
  
  .hero-badge .badge-icon {
    font-size: 0.875rem;
  }
  
  .hero-headline-top {
    font-size: 1rem;
  }
  
  .hero-headline-main {
    font-size: 1.75rem;
  }
  
  .hero-subheadline {
    font-size: 0.9rem;
  }
  
  .hero-social-proof {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .proof-divider {
    display: none;
  }
  
  .proof-stat {
    min-width: 100px;
  }
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--blue);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  margin: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary:hover {
  background-color: #ffff00;
  color: var(--dark);
}

/* ========================================
   HERO CTA BUTTONS - ULTRA PREMIUM DESIGN
   ======================================== */

.hero-cta-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 0 1rem;
}

/* PRIMARY CTA - "Ver Paquetes" */
.hero-cta-primary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #d4af37;
  border-radius: 16px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(212, 175, 55, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(0);
}

.hero-cta-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-cta-primary:hover::before {
  opacity: 1;
}

.hero-cta-primary .cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-cta-primary:hover .cta-shine {
  left: 100%;
}

.hero-cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: #f0e68c;
  box-shadow: 
    0 12px 48px rgba(212, 175, 55, 0.4),
    0 6px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta-primary:active {
  transform: translateY(-2px) scale(1);
}

.hero-cta-primary .cta-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.hero-cta-primary .cta-icon {
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.5));
  animation: pulse-diamond 2s ease-in-out infinite;
}

@keyframes pulse-diamond {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero-cta-primary .cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.hero-cta-primary .cta-main {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta-primary .cta-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: #d4af37;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* SECONDARY CTA - "Ver Portafolio" */
.hero-cta-secondary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  transform: translateY(0);
}

.hero-cta-secondary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-cta-secondary:hover::before {
  opacity: 1;
}

.hero-cta-secondary .cta-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.15), transparent);
  transition: left 0.8s ease;
}

.hero-cta-secondary:hover .cta-glow {
  left: 100%;
}

.hero-cta-secondary:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: #007BFF;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 255, 1) 100%);
  box-shadow: 
    0 8px 32px rgba(0, 123, 255, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero-cta-secondary:active {
  transform: translateY(-1px) scale(1);
}

.hero-cta-secondary .cta-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.hero-cta-secondary .cta-icon {
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 4px rgba(0, 123, 255, 0.2));
  transition: transform 0.3s ease;
}

.hero-cta-secondary:hover .cta-icon {
  transform: rotate(-10deg) scale(1.1);
}

.hero-cta-secondary .cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.hero-cta-secondary .cta-main {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.hero-cta-secondary:hover .cta-main {
  color: #007BFF;
}

.hero-cta-secondary .cta-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero-cta-secondary:hover .cta-sub {
  color: #007BFF;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero-cta-container {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    max-width: 320px;
    padding: 1.125rem 2rem;
    justify-content: center;
  }
  
  .hero-cta-primary .cta-icon,
  .hero-cta-secondary .cta-icon {
    font-size: 1.5rem;
  }
  
  .hero-cta-primary .cta-main,
  .hero-cta-secondary .cta-main {
    font-size: 1rem;
  }
  
  .hero-cta-primary .cta-sub,
  .hero-cta-secondary .cta-sub {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-primary .cta-text,
  .hero-cta-secondary .cta-text {
    align-items: center;
  }
  
  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 1rem 1.5rem;
  }
}

/* Services */
.services {
  padding: 4rem var(--spacing);
  text-align: center;
}

.services h2 {
  color: var(--orange);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

/* Animations */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.service-card {
  padding: var(--spacing);
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  animation: shake 0.5s ease-in-out;
}

.service-card:nth-child(1) { animation-delay: 0.5s; }
.service-card:nth-child(2) { animation-delay: 1s; }
.service-card:nth-child(3) { animation-delay: 1.5s; }

@media (prefers-reduced-motion: reduce) {
  .service-card {
    animation: none;
  }
}

.service-card:hover .step-number {
  background-color: var(--blue);
  color: white;
}

.step-number {
  font-size: 2rem;
  color: var(--blue);
}

/* Portfolio */
.portfolio {
  padding: 4rem var(--spacing);
  text-align: center;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

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

.portfolio h2 {
  color: var(--blue);
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-header p {
  color: #6c757d;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Carousel Styles */
.portfolio-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1500px;
}

.carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2rem 0;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 var(--spacing);
}

@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 30%;
  }
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .project-card {
    transition: none;
  }
}

.project-card:hover {
  transform: translateY(-20px) rotateX(5deg) rotateY(-5deg) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 123, 255, 0.3), 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.project-card:hover::before {
  opacity: 1;
}

.project-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.95);
}

.project-card:hover img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.project-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.overlay-content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.project-meta {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  background: white;
}

.project-meta h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.project-meta > p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.tags {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.tags li {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.tags li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

@media (hover: none) {
  .carousel-btn {
    display: none;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--secondary);
  cursor: pointer;
}

.carousel-dots button.active {
  background-color: var(--blue);
}

/* Thumbnails */
.thumbnails {
  padding: 4rem var(--spacing);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.thumbnails::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.thumbnails h2 {
  color: white;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.thumbnail-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.thumbnail-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.thumbnail-card:hover::after {
  animation: shine 1.5s ease-in-out;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.thumbnail-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 
              0 0 0 3px rgba(255, 255, 255, 0.5),
              0 0 30px rgba(0, 123, 255, 0.5);
}

.thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.thumbnail-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.95) contrast(1.1);
}

.thumbnail-card:hover img {
  transform: scale(1.12);
  filter: brightness(1.05) contrast(1.15) saturate(1.2);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.4) 0%, rgba(102, 126, 234, 0.4) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  backdrop-filter: blur(5px);
}

.thumbnail-card:hover .play-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #007bff;
  padding-left: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 
              0 0 0 4px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.play-button::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.thumbnail-card:hover .play-button {
  transform: scale(1.15);
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  box-shadow: 0 15px 50px rgba(0, 123, 255, 0.6), 
              0 0 0 6px rgba(255, 255, 255, 0.4),
              0 0 60px rgba(0, 123, 255, 0.8);
}

.content {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
}

.content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 700;
  background: linear-gradient(135deg, #007bff 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 4rem var(--spacing);
  text-align: center;
}

/* Contact */
.contact {
  padding: 4rem var(--spacing);
  text-align: center;
  background-color: var(--dark);
  color: white;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: var(--border-radius);
}

.contact button {
  padding: 0.75rem 1.5rem;
  background-color: var(--blue);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact button:hover {
  background-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

/* Nueva Sección de Servicios - Rodney.Design */
.services-new {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Introducción del diseñador */
.services-intro {
  max-width: 1200px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.intro-content {
  text-align: left;
}

.brand-mark {
  margin-bottom: 1.5rem;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.brand-dot {
  color: var(--orange);
  font-size: 2rem;
}

.tagline {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline-sub {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 400;
  margin-top: 1rem;
}

/* Formas abstractas */
.intro-visual {
  position: relative;
  height: 400px;
  overflow: visible;
  z-index: 1;
}

.abstract-shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 6s ease-in-out infinite;
  cursor: grab;
  z-index: 10;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  pointer-events: auto;
  touch-action: none;
}

.abstract-shape:active {
  cursor: grabbing;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(255, 102, 0, 0.2) 100%);
  top: 0;
  left: 20%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.3) 0%, rgba(0, 123, 255, 0.1) 100%);
  bottom: 50px;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(255, 102, 0, 0.25) 100%);
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

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

/* Animaciones interactivas para óvalos */
.shape-shake {
  animation: shake-shape 0.5s ease-in-out !important;
}

.shape-inflate {
  animation: inflate 0.6s ease-out forwards !important;
}

.shape-explode {
  animation: explode 0.8s ease-out forwards !important;
}

@keyframes shake-shape {
  0%, 100% { 
    transform: var(--shape-transform, translate(0, 0)) translateX(0) rotate(0deg); 
  }
  10%, 30%, 50%, 70%, 90% { 
    transform: var(--shape-transform, translate(0, 0)) translateX(-10px) rotate(-5deg); 
  }
  20%, 40%, 60%, 80% { 
    transform: var(--shape-transform, translate(0, 0)) translateX(10px) rotate(5deg); 
  }
}

@keyframes inflate {
  0% {
    transform: var(--shape-transform, translate(0, 0)) scale(1);
  }
  50% {
    transform: var(--shape-transform, translate(0, 0)) scale(1.3);
  }
  100% {
    transform: var(--shape-transform, translate(0, 0)) scale(1.5);
    filter: brightness(1.3);
  }
}

@keyframes explode {
  0% {
    transform: var(--shape-transform, translate(0, 0)) scale(1.5);
    opacity: 1;
  }
  50% {
    transform: var(--shape-transform, translate(0, 0)) scale(2);
    opacity: 0.7;
    filter: brightness(1.5) blur(5px);
  }
  100% {
    transform: var(--shape-transform, translate(0, 0)) scale(0);
    opacity: 0;
    filter: brightness(2) blur(10px);
  }
}

/* Servicios Principales */
.services-main {
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

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

.service-card-new {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 123, 255, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9d00 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card-new:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card-new h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.service-card-new p {
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.7;
}

/* Por qué elegir Rodney.Design */
.why-choose {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: white;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.brand-highlight {
  color: var(--orange);
  font-weight: 800;
}

.brand-dot {
  color: var(--blue);
  font-weight: 900;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-check {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-check {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
}

.benefit-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-visual {
    height: 250px;
  }

  .tagline {
    font-size: 2rem;
  }

  .services-grid-new {
    grid-template-columns: 1fr;
  }

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

  .benefit-item:hover {
    transform: translateX(5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .abstract-shape {
    animation: none;
  }

  .service-card-new:hover,
  .benefit-item:hover {
    transform: none;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem var(--spacing) 2rem;
  background-color: var(--dark);
  color: white;
}

.footer-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.footer-logo img {
  height: 100px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1;
  transform: scale(1.08);
}

.social-media {
  display: flex;
  justify-content: center;
  gap: var(--spacing);
  margin-bottom: 1rem;
}

.social-media a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-media a:hover {
  color: var(--orange);
  transform: translateY(-3px);
}

/* Mejora de animaciones para los GIFs de proyectos */
.project-card-image img[src$=".gif"] {
  object-fit: contain;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1rem;
}

.project-card:hover img[src$=".gif"] {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Adaptación especial para GYPSUM y Di Classe con fondo negro */
.project-card-image img[src*="project4/animation.gif"],
.project-card-image img[src*="project2/animation.gif"] {
  object-fit: contain;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 2rem;
}

.project-card:hover img[src*="project4/animation.gif"],
.project-card:hover img[src*="project2/animation.gif"] {
  transform: scale(1.1);
  filter: brightness(1.15) contrast(1.1);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
/* ========================================
   PRICING PAGE CONVERSION STYLES
   Encapsulated with .pricing-page wrapper
   ======================================== */

.pricing-page {
  --price-orange: #ff6600;
  --price-orange-2: #ff9d00;
  --price-blue: #007bff;
  --price-gold: #d4af37;
  --price-green: #28a745;
  --price-red: #dc3545;
  --radius: 16px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* 1. HERO PREMIUM */
.pricing-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight-orange {
  color: var(--price-orange);
  position: relative;
  font-weight: 800;
}

.highlight-red {
  color: #ff6b6b;
}

.highlight-blue {
  color: #4dabf7;
}

.highlight-green {
  color: #51cf66;
}

.highlight-gold {
  color: var(--price-gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary, .btn-whatsapp, .btn-secondary, .btn-outline, .btn-urgency, .btn-cta-primary, .btn-cta-whatsapp {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary, .btn-urgency, .btn-cta-primary {
  background: linear-gradient(135deg, var(--price-orange), var(--price-orange-2));
  color: white;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.35);
}

.btn-primary:hover, .btn-urgency:hover, .btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.45);
}

.btn-whatsapp, .btn-cta-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover, .btn-cta-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background: #22c55e;
}

.btn-secondary {
  background: var(--price-blue);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--price-blue);
  border: 2px solid var(--price-blue);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--price-blue);
  color: white;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 2. SOCIAL PROOF BAR */
.social-proof-bar {
  background: #f8f9fa;
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.proof-label {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-pills {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-pill {
  background: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #495057;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.brand-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  color: var(--price-blue);
}

/* 3. PAIN SECTION */
.pain-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.pain-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #212529;
  line-height: 1.3;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f8f9fa;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: #ffeceb;
}

.pain-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pain-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #212529;
}

.pain-card p {
  color: #6c757d;
  line-height: 1.6;
}

.pain-agitate {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-left: 4px solid var(--price-red);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 3rem 0;
}

.pain-agitate p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #495057;
}

.pain-solution {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid var(--price-blue);
  padding: 2rem;
  border-radius: var(--radius);
}

.pain-solution h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #212529;
}

.pain-solution p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #495057;
}

/* 4. PACKAGES SECTION */
.packages-section {
  max-width: 1400px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.packages-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: #212529;
}

.packages-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
  justify-items: center;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1rem;
}

.package-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 2px solid #f1f3f5;
  position: relative;
  width: 100%;
  max-width: 320px;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #e9ecef;
}

/* Standard Packages - Llamativos pero profesionales */
.package-card.package-standard {
  border: 2px solid rgba(0, 123, 255, 0.25);
  background: linear-gradient(135deg, 
    rgba(0, 123, 255, 0.04) 0%, 
    rgba(255, 255, 255, 1) 50%,
    rgba(0, 123, 255, 0.02) 100%);
  box-shadow: 
    0 4px 16px rgba(0, 123, 255, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
  max-width: 330px;
}

.package-card.package-standard:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 
    0 10px 30px rgba(0, 123, 255, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 123, 255, 0.4);
}

.package-card.package-standard .package-cta {
  background: linear-gradient(135deg, var(--price-blue) 0%, #0056b3 100%);
  font-size: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.package-card.package-standard .package-cta:hover {
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
  transform: scale(1.05);
}

.package-card.package-standard .package-price {
  color: var(--price-blue);
  font-size: 2.6rem;
}

/* HERO CARD 1: Branding Avanzado - Premium Dark con Oro */
.package-card.premium {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 3px solid var(--price-gold);
  box-shadow: 
    0 15px 50px rgba(212, 175, 55, 0.35),
    0 5px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(1.08);
  max-width: 360px;
  padding: 2.5rem;
  z-index: 10;
}

.package-card.premium:hover {
  transform: scale(1.11) translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(212, 175, 55, 0.45),
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: #f0c83a;
}

.package-card.premium .package-name,
.package-card.premium .package-desc,
.package-card.premium .package-price,
.package-card.premium .package-features,
.package-card.premium .package-note {
  color: white;
}

.package-card.premium .package-features i {
  color: var(--price-gold);
  font-size: 1.2rem;
}

.package-card.premium .package-price {
  color: var(--price-gold);
  font-size: 2.8rem;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.package-card.premium .package-cta {
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* HERO CARD 2: Retainer Premium - Naranja Vibrante */
.package-card.retainer-premium {
  border: 3px solid var(--price-orange);
  background: linear-gradient(135deg, 
    rgba(255, 102, 0, 0.06) 0%, 
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 102, 0, 0.03) 100%);
  box-shadow: 
    0 15px 50px rgba(255, 102, 0, 0.3),
    0 5px 20px rgba(255, 102, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: scale(1.08);
  max-width: 360px;
  padding: 2.5rem;
  z-index: 10;
  position: relative;
  overflow: visible;
}

.package-card.retainer-premium::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--price-orange), var(--price-orange-2), var(--price-orange));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.package-card.retainer-premium:hover::before {
  opacity: 0.3;
  animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.package-card.retainer-premium:hover {
  transform: scale(1.11) translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(255, 102, 0, 0.4),
    0 8px 30px rgba(255, 102, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: var(--price-orange-2);
}

.package-card.retainer-premium .package-price {
  color: var(--price-orange);
  font-size: 2.8rem;
  text-shadow: 0 2px 10px rgba(255, 102, 0, 0.2);
}

.package-card.retainer-premium .package-features i {
  color: var(--price-orange);
  font-size: 1.2rem;
}

.package-card.retainer-premium .package-cta {
  padding: 1.2rem;
  font-size: 1.1rem;
}

.package-note-premium {
  background: rgba(255, 102, 0, 0.1);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--price-orange);
  color: var(--price-orange) !important;
  font-weight: 600;
  font-size: 0.85rem;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.package-card.recommended {
  border-color: var(--price-orange);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.2);
}

.package-card.premium {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid var(--price-gold);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

.package-card.premium:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.package-card.premium .package-name,
.package-card.premium .package-desc,
.package-card.premium .package-price,
.package-card.premium .package-features,
.package-card.premium .package-note {
  color: white;
}

.package-card.premium .package-features i {
  color: var(--price-gold);
}

.package-card.enterprise {
  opacity: 0.85;
  border-color: #dee2e6;
  max-width: 320px;
}

/* Enterprise Package - Profesional y corporativo */
.package-card.package-enterprise {
  border: 2px solid rgba(108, 117, 125, 0.25);
  background: linear-gradient(135deg, 
    rgba(108, 117, 125, 0.04) 0%, 
    rgba(255, 255, 255, 1) 50%,
    rgba(108, 117, 125, 0.02) 100%);
  box-shadow: 
    0 4px 16px rgba(108, 117, 125, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
  max-width: 330px;
}

.package-card.package-enterprise:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 
    0 10px 30px rgba(108, 117, 125, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(108, 117, 125, 0.35);
}

.package-card.package-enterprise .package-cta {
  background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  font-size: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(73, 80, 87, 0.3);
}

.package-card.package-enterprise .package-cta:hover {
  box-shadow: 0 6px 18px rgba(73, 80, 87, 0.4);
  transform: scale(1.05);
}

.package-card.package-enterprise .package-price {
  color: #495057;
  font-size: 2.6rem;
}

.enterprise-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
  white-space: nowrap;
}

.recommended-badge, .premium-badge, .popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--price-orange), var(--price-orange-2));
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

.premium-badge {
  background: linear-gradient(135deg, var(--price-gold), #f0c83a);
  top: -15px;
}

.popular-badge {
  top: -16px;
  background: linear-gradient(135deg, var(--price-gold) 0%, #f0c83a 50%, var(--price-gold) 100%);
  padding: 0.5rem 1.8rem;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  box-shadow: 
    0 6px 20px rgba(212, 175, 55, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.2);
  animation: badgePulse 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes badgePulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

.retainer-badge-pkg {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--price-orange) 0%, var(--price-orange-2) 100%);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 
    0 4px 16px rgba(255, 102, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 20;
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.package-term {
  display: block;
  font-size: 0.85rem;
  color: var(--price-orange);
  font-style: italic;
  margin-top: 0.5rem;
  font-weight: 700;
}

.retainer-cta-pkg {
  background: linear-gradient(135deg, var(--price-orange) 0%, var(--price-orange-2) 100%);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.35);
  position: relative;
  overflow: hidden;
}

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

.retainer-cta-pkg:hover::before {
  width: 300px;
  height: 300px;
}

.retainer-cta-pkg:hover {
  box-shadow: 0 12px 40px rgba(255, 102, 0, 0.5);
  transform: scale(1.08);
}

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

.package-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #212529;
}

.package-desc {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.5;
}

.package-pricing {
  margin-bottom: 1.5rem;
  text-align: center;
}

.package-value {
  display: block;
  font-size: 0.85rem;
  color: #6c757d;
  text-decoration: line-through;
  margin-bottom: 0.3rem;
}

.package-price {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--price-orange);
  line-height: 1;
}

.package-price sup {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
}

.package-savings {
  display: inline-block;
  background: #d1f4e0;
  color: var(--price-green);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #f1f3f5;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.5;
}

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

.package-features i {
  color: var(--price-green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.package-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--price-blue), #0056b3);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.package-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.package-cta.premium-cta {
  background: linear-gradient(135deg, var(--price-gold), #f0c83a);
  color: #1a1a1a;
  font-weight: 900;
}

.package-cta.premium-cta:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.package-note {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #6c757d;
}

.package-note.premium-note {
  color: rgba(255, 255, 255, 0.8);
}

.package-guarantee {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.package-guarantee i {
  font-size: 3rem;
  color: var(--price-blue);
  flex-shrink: 0;
}

.package-guarantee h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #212529;
}

.package-guarantee p {
  color: #495057;
  line-height: 1.6;
}

/* 5. COMPARISON TABLE */
.comparison-section {
  max-width: 1400px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.comparison-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #212529;
}

.comparison-table-wrapper {
  overflow-x: auto;
  box-shadow: var(--shadow-medium);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.95rem;
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.comparison-table th {
  padding: 1.2rem 1rem;
  text-align: center;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th.feature-col {
  text-align: left;
  width: 30%;
}

.comparison-table th.recommended-col {
  background: linear-gradient(135deg, var(--price-orange), var(--price-orange-2));
}

.comparison-table th.premium-col {
  background: linear-gradient(135deg, var(--price-gold), #f0c83a);
  color: #1a1a1a;
}

.badge-small, .badge-small-gold {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.3rem;
  opacity: 0.9;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #f1f3f5;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}

.comparison-table td {
  padding: 1rem;
  text-align: center;
  color: #495057;
}

.comparison-table td.feature-name {
  text-align: left;
  font-weight: 600;
  color: #212529;
}

.comparison-table .fa-check.green {
  color: var(--price-green);
  font-size: 1.2rem;
}

.comparison-table .fa-times.gray {
  color: #dee2e6;
  font-size: 1.2rem;
}

.comparison-table .cta-row td {
  padding: 1.5rem 1rem;
  background: #fafbfc;
}

.table-cta {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--price-blue);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.table-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.table-cta.recommended-cta {
  background: linear-gradient(135deg, var(--price-orange), var(--price-orange-2));
}

.table-cta.premium-cta {
  background: linear-gradient(135deg, var(--price-gold), #f0c83a);
  color: #1a1a1a;
}

/* Mobile Accordion (hidden on desktop) */
.comparison-accordion {
  display: none;
}

.accordion-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.accordion-item.recommended-accordion {
  border: 2px solid var(--price-orange);
}

.accordion-item.premium-accordion {
  border: 2px solid var(--price-gold);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: #212529;
  list-style: none;
}

.accordion-item.premium-accordion .accordion-header {
  color: white;
}

.accordion-header::-webkit-details-marker {
  display: none;
}

.badge-mobile, .badge-mobile-gold {
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  background: var(--price-orange);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-mobile-gold {
  background: var(--price-gold);
  color: #1a1a1a;
}

.accordion-content {
  padding: 0 1.2rem 1.2rem;
}

.mobile-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.mobile-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f1f3f5;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #495057;
}

.accordion-item.premium-accordion .mobile-features li {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.accordion-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--price-blue);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.accordion-cta.recommended-cta {
  background: linear-gradient(135deg, var(--price-orange), var(--price-orange-2));
}

.accordion-cta.premium-cta {
  background: linear-gradient(135deg, var(--price-gold), #f0c83a);
  color: #1a1a1a;
}

/* 6. PROCESS TIMELINE */
.process-section {
  max-width: 1000px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.process-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: #212529;
}

.process-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.process-timeline {
  position: relative;
  padding-left: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--price-blue), var(--price-orange));
}

.timeline-step {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--price-blue), var(--price-orange));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #212529;
}

.step-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.step-duration {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius);
}

.process-cta p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #495057;
}

/* 7. PROOF SECTION */
.proof-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.proof-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #212529;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.proof-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.proof-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.proof-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.proof-content {
  padding: 1.5rem;
}

.proof-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #212529;
}

.proof-quote {
  font-style: italic;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 3px solid var(--price-blue);
  padding-left: 1rem;
}

.proof-link {
  color: var(--price-blue);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.proof-link:hover {
  color: var(--price-orange);
}

.proof-cta {
  text-align: center;
  margin-top: 2rem;
}

/* 8. TRUST SECTION */
.trust-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius);
}

.trust-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #212529;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.trust-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.trust-icon {
  font-size: 3rem;
  color: var(--price-blue);
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #212529;
}

.trust-card p {
  color: #6c757d;
  line-height: 1.6;
}

.deliverables-section {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.deliverables-section h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #212529;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.deliverable-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.deliverable-item i {
  font-size: 2.5rem;
  color: var(--price-orange);
}

.deliverable-item p {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
}

/* ========================================
   9. CAPACITY / CUPOS MENSUALES
   (Ethical Urgency - Premium Glassmorphism)
   ======================================== */

.capacity {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.capacity__container {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.capacity__header {
  text-align: center;
  margin-bottom: 3rem;
}

.capacity__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #212529;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.capacity__subtitle-inline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: #6c757d;
}

.capacity__subtitle {
  font-size: 1.1rem;
  color: #495057;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.capacity__panel {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

/* Availability Column */
.capacity__availability-container {
  position: relative;
}

.capacity__label {
  font-size: 1rem;
  font-weight: 700;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.capacity__availability {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.capacity-slot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.capacity-slot__icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.capacity-slot__text {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}

/* Open Slot */
.capacity-slot--open {
  border-color: rgba(0, 123, 255, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 255, 1) 100%);
}

.capacity-slot--open:hover {
  border-color: #007BFF;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.15);
}

.capacity-slot--open .capacity-slot__icon {
  color: #007BFF;
}

.capacity-slot--open:hover .capacity-slot__icon {
  transform: scale(1.1);
}

/* Taken Slot */
.capacity-slot--taken {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(250, 250, 250, 0.6);
  opacity: 0.75;
}

.capacity-slot--taken .capacity-slot__icon {
  color: #d4af37;
}

.capacity-slot--taken .capacity-slot__text {
  color: #6c757d;
}

/* Why Column */
.capacity__why {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.capacity__why-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.capacity__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.capacity__list li {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.capacity__list li:hover {
  background: rgba(255, 255, 255, 0.8);
}

.capacity__list i {
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 1.125rem;
  color: #FF6600;
}

.capacity__list span {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
}

.capacity__note {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 157, 0, 0.08);
  border-left: 3px solid #FF9D00;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.6;
}

.capacity__note i {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #FF9D00;
}

.capacity__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #007BFF;
  border-radius: 8px;
  color: #007BFF;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.capacity__link:hover {
  background: #007BFF;
  color: white;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.2);
}

.capacity__link:focus-visible {
  outline: 3px solid rgba(0, 123, 255, 0.5);
  outline-offset: 2px;
}

.capacity__link i {
  transition: transform 0.3s ease;
}

.capacity__link:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 968px) {
  .capacity__panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .capacity__availability-container {
    order: -1;
  }
}

@media (max-width: 768px) {
  .capacity__container {
    padding: 2rem 1.5rem;
  }
  
  .capacity__header {
    margin-bottom: 2rem;
  }
  
  .capacity__panel {
    gap: 2rem;
  }
  
  .capacity-slot {
    padding: 1rem 1.25rem;
  }
  
  .capacity-slot__icon {
    font-size: 1.25rem;
  }
  
  .capacity-slot__text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .capacity {
    padding: 0 1rem;
  }
  
  .capacity__container {
    padding: 1.5rem 1rem;
  }
  
  .capacity__link {
    width: 100%;
    justify-content: center;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .capacity-slot,
  .capacity__link,
  .capacity-slot__icon,
  .capacity__link i {
    transition: none;
  }
  
  .capacity-slot:hover,
  .capacity__link:hover {
    transform: none;
  }
  
  .capacity-slot--open:hover .capacity-slot__icon,
  .capacity__link:hover i {
    transform: none;
  }
}

/* 10. FAQ SECTION */
.faq-section {
  max-width: 900px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.faq-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: #212529;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--price-blue);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--price-orange);
  font-size: 1rem;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #6c757d;
  line-height: 1.7;
}

/* 11. CTA FINAL */
.cta-final-section {
  max-width: 1000px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.cta-final-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 3rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.cta-final-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-final-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-cta-primary i,
.btn-cta-whatsapp i {
  margin-right: 0.5rem;
}

.cta-final-benefits {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

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

/* 12. FOOTER MINI CTA */
.footer-mini-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  text-align: center;
  border-top: 3px solid var(--price-blue);
  margin-bottom: 2rem;
}

.footer-mini-cta h3 {
  font-size: 1.5rem;
  color: #212529;
  margin-bottom: 1rem;
}

.footer-cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--price-blue), #0056b3);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.whatsapp-float:hover {
  width: auto;
  padding: 0 1.5rem;
  border-radius: 50px;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  flex-shrink: 0;
}

.whatsapp-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 0;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
  max-width: 200px;
  margin-left: 0.8rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .pricing-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-whatsapp, .btn-secondary {
    width: 100%;
  }

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

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

  .package-card.premium {
    transform: scale(1);
  }

  .package-card.premium:hover {
    transform: scale(1.02) translateY(-8px);
  }

  /* Show mobile accordion, hide desktop table */
  .comparison-table-wrapper {
    display: none;
  }

  .comparison-accordion {
    display: block;
  }

  .process-timeline {
    padding-left: 2rem;
  }

  .process-timeline::before {
    left: 10px;
  }

  .timeline-step {
    padding-left: 1.5rem;
  }

  .step-number {
    left: -2rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

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

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

  .slots-visual {
    flex-direction: column;
  }

  .cta-final-content {
    padding: 3rem 1.5rem;
  }

  .cta-final-options {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .whatsapp-float:hover {
    transition: none;
  }

  .slot.available {
    animation: none;
  }
}

.faq-question:focus,
.package-cta:focus,
.btn-primary:focus,
.btn-whatsapp:focus,
.btn-secondary:focus,
.btn-outline:focus {
  outline: 3px solid var(--price-blue);
  outline-offset: 3px;
}

/* ========================================
   PRICES PAGE — CONVERSION OPTIMIZED
   Full redesign for maximum conversion
   ======================================== */

/* CSS Variables for Pricing Page */
.pricing-page {
  --price-orange: #ff6600;
  --price-orange-2: #ff9d00;
  --price-blue: #007bff;
  --price-gold: #d4af37;
  --price-surface: rgba(255, 255, 255, 0.06);
  --price-radius: 16px;
  --price-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --price-shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
  --price-shadow-heavy: 0 12px 48px rgba(0, 0, 0, 0.15);
  --price-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll behavior with offset for sticky header */
.pricing-page #paquetes,
.pricing-page section[id] {
  scroll-margin-top: 100px;
}

/* ========================================
   1. HERO PREMIUM
   ======================================== */
.pricing-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0056b3 0%, #007bff 50%, #0099ff 100%);
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
  pointer-events: none;
}

.pricing-hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.pricing-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.highlight-gradient {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.stat-icon {
  flex-shrink: 0;
  color: var(--price-gold);
}

.pricing-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.pricing-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--price-gold) 0%, #f0c83a 100%);
  color: #1a1a1a;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.3);
  transition: var(--price-transition);
}

.pricing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.pricing-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--price-transition);
}

.pricing-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.pricing-hero-trust {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ========================================
   2. SOCIAL PROOF BAR
   ======================================== */
.social-proof-bar {
  padding: 2rem 1.5rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.social-proof-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-proof-logos {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.proof-pill {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #495057;
  scroll-snap-align: center;
  box-shadow: var(--price-shadow-soft);
}

/* ========================================
   3. PAIN SECTION (PAS Framework)
   ======================================== */
.pain-section {
  padding: 5rem 1.5rem;
  background: white;
}

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

.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pain-card {
  text-align: center;
  padding: 2rem;
}

.pain-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fee, #fdd);
  border-radius: 50%;
  color: #dc3545;
}

.pain-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.pain-card p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}

.pain-agitate {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 2rem;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
}

.pain-agitate p {
  font-size: 1.125rem;
  color: #856404;
  line-height: 1.6;
  margin: 0;
}

.pain-solution {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pain-solution p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  line-height: 1.6;
}

/* ========================================
   4. PACKAGES SECTION (MAIN CTA)
   ======================================== */
.packages-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.packages-container {
  max-width: 1400px;
  margin: 0 auto;
}

.packages-header {
  text-align: center;
  margin-bottom: 4rem;
}

.packages-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #212529;
  margin-bottom: 1rem;
}

.packages-subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.package-card {
  position: relative;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: var(--price-radius);
  padding: 2rem;
  transition: var(--price-transition);
  box-shadow: var(--price-shadow-soft);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--price-shadow-medium);
}

/* Package Badges */
.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.recommended-badge {
  background: linear-gradient(135deg, var(--price-orange), var(--price-orange-2));
  color: white;
}

.premium-badge {
  background: linear-gradient(135deg, var(--price-gold), #f0c83a);
  color: #1a1a1a;
}

/* Premium Card Styling */
.package-card.premium {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-color: var(--price-gold);
  border-width: 2px;
  color: white;
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(212, 175, 55, 0.25);
}

.package-card.premium:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 64px rgba(212, 175, 55, 0.35);
}

.package-card.premium .package-name,
.package-card.premium .package-tagline,
.package-card.premium .package-features span,
.package-card.premium .value-label {
  color: white;
}

/* Recommended Card */
.package-card.recommended {
  border-color: var(--price-orange);
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.15);
}

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

.package-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #212529;
  margin-bottom: 0.5rem;
}

.package-tagline {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
  line-height: 1.4;
}

.package-pricing {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.package-card.premium .package-pricing {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.package-value-old {
  display: block;
  font-size: 0.875rem;
  color: #6c757d;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.package-card.premium .package-value-old {
  color: rgba(255, 255, 255, 0.5);
}

.package-price {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #212529;
  line-height: 1;
}

.premium-price {
  background: linear-gradient(135deg, var(--price-gold) 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-savings {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: #d4edda;
  color: #155724;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 4px;
}

.package-card.premium .package-savings {
  background: rgba(212, 175, 55, 0.2);
  color: var(--price-gold);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.package-features li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  color: #28a745;
  margin-top: 2px;
}

.package-card.premium .check-icon {
  color: var(--price-gold);
}

.package-features span {
  font-size: 0.9375rem;
  color: #495057;
  line-height: 1.5;
}

.package-value {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.package-card.premium .package-value {
  background: rgba(212, 175, 55, 0.1);
}

.value-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6c757d;
}

.premium-value .value-label {
  color: var(--price-gold);
}

.package-cta {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--price-blue);
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: var(--price-transition);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.package-cta:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.premium-cta {
  background: linear-gradient(135deg, var(--price-gold) 0%, #f0c83a 100%);
  color: #1a1a1a;
  font-size: 1.0625rem;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.3);
}

.premium-cta:hover {
  background: linear-gradient(135deg, #f0c83a 0%, #ffd700 100%);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

/* Enterprise Anchor */
.enterprise-anchor {
  max-width: 800px;
  margin: 2rem auto 0;
  border: 2px dashed #dee2e6;
  border-radius: var(--price-radius);
  background: #f8f9fa;
}

.enterprise-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  list-style: none;
}

.enterprise-summary::-webkit-details-marker {
  display: none;
}

.enterprise-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #495057;
}

.enterprise-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #212529;
}

.chevron-icon {
  transition: transform 0.3s;
  color: #6c757d;
}

.enterprise-anchor[open] .chevron-icon {
  transform: rotate(180deg);
}

.enterprise-content {
  padding: 0 2rem 2rem;
}

.enterprise-content p {
  margin-bottom: 1rem;
  color: #495057;
}

.enterprise-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.enterprise-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.enterprise-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--price-blue);
  font-weight: 700;
}

.enterprise-cta {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: #495057;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--price-transition);
}

.enterprise-cta:hover {
  background: #343a40;
}

/* ========================================
   5. COMPARISON TABLE
   ======================================== */
.comparison-section {
  padding: 5rem 1.5rem;
  background: white;
}

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

.comparison-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #212529;
  margin-bottom: 3rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--price-radius);
  overflow: hidden;
  box-shadow: var(--price-shadow-soft);
}

.comparison-table thead {
  background: #f8f9fa;
}

.comparison-table th {
  padding: 1.25rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #495057;
  text-align: center;
  border-bottom: 2px solid #dee2e6;
}

.comparison-table .feature-column {
  text-align: left;
  min-width: 200px;
}

.comparison-table .highlight-column {
  background: rgba(255, 102, 0, 0.05);
}

.comparison-table .premium-column {
  background: rgba(212, 175, 55, 0.05);
}

.comparison-table tbody tr {
  border-bottom: 1px solid #dee2e6;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #495057;
}

.comparison-table .feature-name {
  font-weight: 600;
  color: #212529;
  text-align: left;
}

.table-check {
  color: #28a745;
  margin: 0 auto;
  display: block;
}

.table-dash {
  color: #dee2e6;
  font-size: 1.5rem;
}

/* Mobile Accordion */
.comparison-accordion {
  display: none;
}

.accordion-item {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-item.highlighted {
  border-color: var(--price-orange);
}

.accordion-item.premium-accordion {
  border-color: var(--price-gold);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #212529;
  text-align: left;
}

.accordion-item.premium-accordion .accordion-header {
  color: white;
}

.accordion-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
  max-height: 1000px;
}

.feature-list {
  list-style: none;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.875rem;
  color: #495057;
}

.accordion-item.premium-accordion .feature-list li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

/* ========================================
   6. PROCESS TIMELINE
   ======================================== */
.process-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.process-container {
  max-width: 900px;
  margin: 0 auto;
}

.process-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #212529;
  margin-bottom: 1rem;
}

.process-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 4rem;
}

.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--price-blue), var(--price-gold));
}

.process-step {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--price-blue), #0056b3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  position: relative;
  z-index: 2;
}

.process-step:last-child .step-number {
  background: linear-gradient(135deg, var(--price-gold), #f0c83a);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.step-time {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #e7f3ff;
  color: var(--price-blue);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
}

/* ========================================
   7. PROOF SECTION (Portfolio)
   ======================================== */
.proof-section {
  padding: 5rem 1.5rem;
  background: white;
}

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

.proof-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #212529;
  margin-bottom: 1rem;
}

.proof-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 4rem;
}

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

.proof-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: var(--price-radius);
  overflow: hidden;
  box-shadow: var(--price-shadow-soft);
  transition: var(--price-transition);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--price-shadow-medium);
}

.proof-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.placeholder-text {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proof-content {
  padding: 2rem;
}

.proof-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #212529;
  margin-bottom: 1rem;
}

.proof-testimonial {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.proof-author {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.proof-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--price-blue);
  font-weight: 700;
  text-decoration: none;
  transition: var(--price-transition);
}

.proof-cta:hover {
  gap: 0.75rem;
  color: #0056b3;
}

/* ========================================
   8. TRUST SECTION (Guarantees)
   ======================================== */
.trust-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

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

.trust-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #212529;
  margin-bottom: 3rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.trust-badge {
  text-align: center;
  padding: 2rem;
}

.trust-icon {
  color: var(--price-blue);
  margin-bottom: 1rem;
}

.trust-badge h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.75rem;
}

.trust-badge p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}

.deliverables-section {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.deliverables-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 2rem;
}

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

.deliverable-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.deliverable-item svg {
  flex-shrink: 0;
  color: #28a745;
  margin-top: 2px;
}

.deliverable-item span {
  font-size: 0.9375rem;
  color: #495057;
  line-height: 1.5;
}

.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, #e7f3ff, #f0f8ff);
  border-left: 4px solid var(--price-blue);
  border-radius: 12px;
  text-align: center;
}

.guarantee-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.guarantee-text {
  font-size: 1.0625rem;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   9. URGENCY SECTION (Slots)
   ======================================== */
.urgency-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.urgency-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.urgency-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.urgency-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.slots-display {
  margin-bottom: 3rem;
}

.slots-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.slots-visual {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.slot {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.slot.filled svg {
  color: #6c757d;
}

.slot.available svg {
  color: var(--price-gold);
}

.slots-status {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.slots-status strong {
  color: var(--price-gold);
}

.urgency-cta-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
}

.urgency-cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--price-gold) 0%, #f0c83a 100%);
  color: #1a1a1a;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.3);
  transition: var(--price-transition);
}

.urgency-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

/* ========================================
   10. FAQ SECTION
   ======================================== */
.faq-section {
  padding: 5rem 1.5rem;
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #212529;
  margin-bottom: 1rem;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--price-transition);
}

.faq-item:hover {
  border-color: var(--price-blue);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #212529;
  text-align: left;
  transition: var(--price-transition);
}

.faq-question:hover {
  color: var(--price-blue);
}

.faq-question-text {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--price-blue);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
}

/* ========================================
   11. CTA FINAL SECTION
   ======================================== */
.cta-final-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--price-blue) 0%, #0056b3 100%);
  color: white;
  text-align: center;
}

.cta-final-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-final-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-final-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.cta-final-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-final-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, var(--price-gold) 0%, #f0c83a 100%);
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  transition: var(--price-transition);
}

.cta-final-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
}

.cta-final-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--price-transition);
}

.cta-final-whatsapp:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-final-microcopy {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ========================================
   12. FOOTER (Pricing Page)
   ======================================== */
.pricing-footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 1.5rem 2rem;
}

.footer-mini-cta {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.footer-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--price-transition);
}

.footer-contact-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--price-transition);
}

.social-link:hover {
  background: var(--price-blue);
}

.footer-copyright {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--price-transition);
  font-weight: 700;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-text {
  font-size: 0.9375rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }
  
  .comparison-accordion {
    display: block;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .package-card.premium {
    transform: scale(1);
  }
  
  .package-card.premium:hover {
    transform: translateY(-4px) scale(1);
  }
}

@media (max-width: 768px) {
  .pricing-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    justify-content: center;
    text-align: center;
  }
  
  .pricing-hero-ctas {
    flex-direction: column;
  }
  
  .pricing-btn-primary,
  .pricing-btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .social-proof-logos {
    justify-content: flex-start;
  }
  
  .pain-cards {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .process-step {
    gap: 1rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
  }
  
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-final-buttons {
    flex-direction: column;
  }
  
  .cta-final-primary,
  .cta-final-whatsapp {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.875rem 1.25rem;
  }
  
  .whatsapp-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  
  .enterprise-summary {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .footer-contact-options {
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .footer-contact-link {
    width: 100%;
    justify-content: center;
  }
}

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

/* Focus States */
.pricing-btn-primary:focus,
.pricing-btn-secondary:focus,
.package-cta:focus,
.premium-cta:focus,
.enterprise-cta:focus,
.proof-cta:focus,
.urgency-cta-btn:focus,
.faq-question:focus,
.accordion-header:focus,
.cta-final-primary:focus,
.cta-final-whatsapp:focus,
.footer-contact-link:focus,
.whatsapp-float:focus {
  outline: 3px solid var(--price-blue);
  outline-offset: 3px;
}

.package-card.premium .package-cta:focus,
.premium-cta:focus {
  outline-color: var(--price-gold);
}

/* Skip to content (hidden but accessible) */
.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.mobile-only {
  display: none;
}

@media (max-width: 992px) {
  .mobile-only {
    display: block;
  }
}

/* ============================================
   RETAINER SERVICE (Brand Builder Mensual)
   ============================================ */

.retainer-service {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
  border: 2px solid rgba(0, 123, 255, 0.2);
  border-radius: 20px;
  padding: 48px;
  margin: 64px auto 0;
  max-width: 900px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 20px rgba(0, 123, 255, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.retainer-service:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 32px rgba(0, 123, 255, 0.15),
    0 4px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 123, 255, 0.3);
}

.retainer-badge {
  position: absolute;
  top: -16px;
  left: 48px;
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 
    0 4px 12px rgba(0, 123, 255, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.retainer-header {
  text-align: center;
  margin-bottom: 32px;
}

.retainer-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.retainer-subtitle {
  font-size: 1.25rem;
  color: #007BFF;
  font-weight: 600;
  margin: 0;
}

.retainer-pricing {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px dashed rgba(0, 123, 255, 0.2);
}

.retainer-price {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: #007BFF;
  line-height: 1;
  margin-bottom: 12px;
}

.retainer-price sup {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 4px;
}

.retainer-term {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.retainer-description {
  margin-bottom: 40px;
}

.retainer-description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.retainer-description p strong {
  color: #1a1a1a;
  font-weight: 700;
}

.retainer-benefits,
.retainer-scope,
.retainer-ideal {
  margin-bottom: 40px;
}

.retainer-benefits h4,
.retainer-scope h4,
.retainer-ideal h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.retainer-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.retainer-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(0, 123, 255, 0.1);
  transition: all 0.2s ease;
}

.retainer-benefits-list li:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 123, 255, 0.2);
  transform: translateX(4px);
}

.retainer-benefits-list i {
  color: #007BFF;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.retainer-benefits-list div {
  flex: 1;
}

.retainer-benefits-list strong {
  display: block;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 4px;
}

.retainer-benefits-list span {
  display: block;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.retainer-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  border-left: 4px solid #007BFF;
}

.retainer-scope-list li {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  padding-left: 8px;
}

.retainer-scope-list strong {
  color: #007BFF;
  font-weight: 700;
}

.retainer-ideal p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.retainer-cta {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 40px auto 24px;
  padding: 20px 48px;
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 6px 24px rgba(0, 123, 255, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.retainer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 10px 32px rgba(0, 123, 255, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

.retainer-cta:active {
  transform: translateY(-1px);
}

.retainer-note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

/* Index.html Service Card Retainer Styling */
.service-card-retainer {
  position: relative;
  border: 2px solid rgba(0, 123, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
}

.service-retainer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.service-retainer-link {
  display: inline-block;
  margin-top: 12px;
  color: #007BFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.service-retainer-link:hover {
  color: #0056b3;
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .retainer-service {
    padding: 32px 24px;
    margin: 48px 16px 0;
  }

  .retainer-badge {
    left: 24px;
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .retainer-header h3 {
    font-size: 1.5rem;
  }

  .retainer-subtitle {
    font-size: 1rem;
  }

  .retainer-price {
    font-size: 2.5rem;
  }

  .retainer-price sup {
    font-size: 1.2rem;
  }

  .retainer-benefits h4,
  .retainer-scope h4,
  .retainer-ideal h4 {
    font-size: 1.2rem;
  }

  .retainer-benefits-list li {
    padding: 12px;
  }

  .retainer-scope-list {
    padding: 16px;
  }

  .retainer-cta {
    font-size: 1.05rem;
    padding: 16px 32px;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .retainer-service,
  .retainer-benefits-list li,
  .retainer-cta,
  .service-retainer-link {
    transition: none;
  }
  
  .retainer-service:hover {
    transform: none;
  }
}
