/*
Theme Name: Mi Tema Personalizado
Author: Carlos Rocha
Description: Mi pagina web convertida a WordPress
Version: 1.0
*/

/* ============================================
  Web Charlie - Static Version Styles
   ============================================ */

/* CSS Variables / Design Tokens */
:root {
  /* Core Brand Colors */
  --background: hsl(220, 20%, 4%);
  --foreground: hsl(200, 20%, 95%);

  --card: hsl(220, 15%, 8%);
  --card-foreground: hsl(200, 20%, 95%);

  --popover: hsl(220, 15%, 8%);
  --popover-foreground: hsl(200, 20%, 95%);

  /* Primary Cyan Neon */
  --primary: hsl(193, 100%, 55%);
  --primary-foreground: hsl(220, 20%, 4%);
  --primary-glow: hsl(193, 100%, 65%);

  --secondary: hsl(220, 15%, 12%);
  --secondary-foreground: hsl(200, 20%, 90%);

  --muted: hsl(220, 15%, 15%);
  --muted-foreground: hsl(200, 10%, 55%);

  --accent: hsl(193, 100%, 55%);
  --accent-foreground: hsl(220, 20%, 4%);

  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(210, 40%, 98%);

  --border: hsl(220, 15%, 18%);
  --input: hsl(220, 15%, 15%);
  --ring: hsl(193, 100%, 55%);

  --radius: 0.75rem;

  /* Custom Design Tokens */
  --gradient-neon: linear-gradient(135deg, hsl(193, 100%, 55%) 0%, hsl(193, 100%, 40%) 50%, hsl(220, 100%, 50%) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(220, 20%, 4%) 0%, hsl(220, 15%, 8%) 100%);
  --gradient-card: linear-gradient(145deg, hsla(220, 15%, 10%, 0.8) 0%, hsla(220, 15%, 6%, 0.9) 100%);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, hsla(193, 100%, 55%, 0.15) 0%, transparent 60%);

  --shadow-neon: 0 0 30px hsla(193, 100%, 55%, 0.3);
  --shadow-neon-sm: 0 0 15px hsla(193, 100%, 55%, 0.2);
  --shadow-card: 0 20px 60px hsla(220, 20%, 2%, 0.5);
  --shadow-elevated: 0 25px 80px hsla(220, 20%, 2%, 0.6);

  --glass-bg: hsla(220, 15%, 10%, 0.6);
  --glass-border: hsla(200, 20%, 95%, 0.08);

  /* Font Families */
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--gradient-dark);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utility Classes */
.text-primary {
  color: var(--primary);
}

.font-semibold {
  font-weight: 600;
}

.w-full {
  width: 100%;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-text {
  text-shadow: 0 0 20px hsla(193, 100%, 55%, 0.5);
}

/* Glass Effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.glass-strong {
  background: hsla(220, 15%, 8%, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid hsla(200, 20%, 95%, 0.12);
}

/* Card Styles */
.card-premium {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
}

.card-featured {
  background: linear-gradient(145deg, hsla(220, 15%, 12%, 0.9) 0%, hsla(220, 15%, 8%, 0.95) 100%);
  border: 1px solid hsla(193, 100%, 55%, 0.3);
  box-shadow: var(--shadow-neon-sm), var(--shadow-card);
  border-radius: var(--radius);
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, hsla(193, 100%, 55%, 0.3) 50%, transparent 100%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero {
  background: var(--gradient-neon);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-neon-sm);
}

.btn-hero:hover {
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.btn-neon {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-neon-sm);
}

.btn-neon:hover {
  background: var(--primary-glow);
  box-shadow: var(--shadow-neon);
}

.btn-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--foreground);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: hsla(220, 15%, 15%, 0.6);
  border-color: hsla(200, 20%, 95%, 0.15);
}

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

.btn-outline:hover {
  background: var(--secondary);
  border-color: var(--primary);
  color: var(--primary);
}

.btn i, .btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-hero:hover i,
.btn-hero:hover svg {
  transform: translateX(4px);
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px hsla(193, 100%, 55%, 0.3);
  }
  50% {
    box-shadow: 0 0 40px hsla(193, 100%, 55%, 0.5);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.7s ease-out forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-glow-pulse {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: hsla(220, 15%, 8%, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid hsla(200, 20%, 95%, 0.12);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-text {
  color: var(--foreground);
}

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

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--foreground);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: none;
}

@media (min-width: 768px) {
  .navbar-cta {
    display: block;
  }
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: hsla(220, 15%, 8%, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
  padding-top: 5rem;
}

.mobile-menu-content a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(220, 20%, 4%, 0.8), hsla(220, 20%, 4%, 0.6), var(--background));
}

.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(193, 100%, 55%, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-orb-1 {
  top: 25%;
  left: -300px;
  animation: float 6s ease-in-out infinite;
}

.hero-orb-2 {
  top: 33%;
  right: -300px;
  animation: float 6s ease-in-out infinite;
  animation-delay: -3s;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-logo-img {
  width: 11rem;
  height: 11rem;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px hsla(193, 100%, 55%, 0.5));
}

@media (min-width: 640px) {
  .hero-logo-img {
    width: 13rem;
    height: 13rem;
  }
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation-delay: 0.2s;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

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

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

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
  animation-delay: 0.3s;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation-delay: 0.4s;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  animation-delay: 0.6s;
}

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

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

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

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

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

/* ============================================
   PLANS SECTION
   ============================================ */
.plans-section {
  position: relative;
}

.plans-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background), hsla(220, 15%, 12%, 0.2), var(--background));
}

.plans-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

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

.plan-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
}

@media (min-width: 1024px) {
  .plan-card {
    padding: 2rem;
  }
}

.plan-featured {
  transform: scale(1.05);
  margin: 1rem 0;
}

@media (min-width: 1024px) {
  .plan-featured {
    margin: -1rem 0;
  }
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-neon-sm);
}

.plan-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.plan-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--muted-foreground);
}

.plan-icon-featured {
  background: hsla(193, 100%, 55%, 0.2);
}

.plan-icon-featured svg {
  color: var(--primary);
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.plan-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.plan-features {
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  border-radius: 50%;
  background: hsla(193, 100%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary);
}

.maintenance-info {
  margin-top: 4rem;
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.maintenance-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.maintenance-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.maintenance-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-grid {
  display: grid;
  gap: 2rem;
}

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

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

.portfolio-card {
  border-radius: 1rem;
  overflow: hidden;
}

.portfolio-images {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
}

.portfolio-before,
.portfolio-after {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.portfolio-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.6;
}

.portfolio-before::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, hsla(220, 20%, 4%, 0.5));
}

.portfolio-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-after::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, hsla(220, 20%, 4%, 0.5));
}

.portfolio-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.portfolio-label-after {
  left: auto;
  right: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-arrow {
  transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.portfolio-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background), hsla(220, 15%, 12%, 0.1), var(--background));
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.testimonial-card {
  padding: 1.5rem;
  border-radius: 1rem;
}

.testimonial-quote {
  margin-bottom: 1rem;
}

.testimonial-quote svg {
  width: 2rem;
  height: 2rem;
  color: hsla(193, 100%, 55%, 0.3);
}

.testimonial-content {
  color: hsla(200, 20%, 95%, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-filled {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  fill: var(--primary);
}

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

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsla(193, 100%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 600;
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: hsla(193, 100%, 55%, 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

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

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .cta-contact-info {
    flex-direction: row;
    justify-content: center;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.trust-badges {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

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

.trust-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.trust-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 4rem 0;
  border-top: 1px solid hsla(220, 15%, 18%, 0.5);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

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

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-foreground);
  font-size: 1.25rem;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--foreground);
}

.footer-description {
  color: var(--muted-foreground);
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.footer-divider {
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  animation: scaleIn 0.4s ease-out 1s both;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
  fill: white;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.3;
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}
