/* ========== VARIABLES ========== */
:root {
  --primary: #002C63;
  --celeste: #4FC3F7;
  --celeste-dark: #0288D1;
  --white: #ffffff;
  --bg-light: #F4F6FA;
  --text-dark: #1a1a2e;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --transition: all 0.3s ease;
}

/* ========== RESET ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--celeste), var(--celeste-dark));
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 195, 247, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.badge {
  display: inline-block;
  background: rgba(79, 195, 247, 0.15);
  color: var(--celeste);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 44, 99, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header.scrolled {
  background: rgba(0, 44, 99, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.header-logo img {
  height: 42px;
  display: block;
  transition: var(--transition);
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--celeste);
}

.nav-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
  opacity: 1;
}

.header-nav .btn-contacto {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
  transition: var(--transition);
  margin-left: 4px;
}

.header-nav .btn-contacto:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(79, 195, 247, 0.45);
  background: linear-gradient(135deg, var(--celeste-dark), var(--celeste));
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  margin: 5px 0;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #001a3d 100%);
  padding: 140px 0 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.06) 0%, transparent 70%);
}

.hero-shape:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -10%;
  right: -5%;
}

.hero-shape:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
}

.hero-shape:nth-child(3) {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-text h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--celeste);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========== WAVE DIVIDER ========== */
.wave-divider {
  line-height: 0;
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ========== STATS ========== */
.stats {
  background: var(--bg-light);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-item p {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== PRICING ========== */
.pricing-category {
  text-align: center;
  margin: 56px 0 24px;
}

.pricing-category:first-of-type {
  margin-top: 0;
}

.category-title {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 0 6px;
  font-weight: 700;
}

.category-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.pricing-card.featured {
  border-color: var(--celeste);
  box-shadow: 0 0 0 1px var(--celeste), var(--shadow);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 0 1px var(--celeste), var(--shadow-hover);
}

.pricing-card .badge {
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  border-radius: 0;
  padding: 8px;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
}

.pricing-top {
  padding: 28px 24px 0;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.price-block {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 44, 99, 0.03), rgba(79, 195, 247, 0.05));
  margin: 16px 0;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
}

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

.price-tag {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  margin-top: 8px;
}

.price-annual {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.price-old {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-card .features {
  padding: 0 24px 20px;
  flex: 1;
}

.pricing-card .features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.pricing-card .features li::before {
  content: '✓';
  color: var(--celeste-dark);
  font-weight: 700;
}

.pricing-footer {
  padding: 0 24px 24px;
}

.btn-plan {
  display: block;
  padding: 14px;
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

/* ========== STREAMING FEATURES ========== */
.streaming-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.streaming-feature {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.streaming-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.streaming-feature .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  color: var(--celeste);
}

.streaming-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.streaming-feature p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #001a3d 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  line-height: 1.7;
}

/* ========== ABOUT GRID ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text ul {
  margin-top: 20px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-list li {
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li::before {
  content: '✓';
  color: var(--celeste-dark);
  font-weight: 700;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========== PLAN LANDING PAGES ========== */
.plan-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #001a3d 100%);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plan-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.plan-hero-content {
  position: relative;
}

.plan-hero-content .badge {
  display: inline-block;
  background: var(--celeste);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.plan-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.plan-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.plan-hero-price {
  margin-bottom: 28px;
}

.plan-hero-price .price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--celeste);
}

.plan-hero-price .period {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
}

.plan-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.plan-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.plan-detail-card h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.plan-detail-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.plan-cta-section {
  background: linear-gradient(135deg, var(--primary), #001a45);
  padding: 80px 0;
}

/* ========== PLAN FEATURES GRID ========== */
.plan-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.plan-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.plan-feature-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(2, 136, 209, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--celeste-dark);
  transition: transform 0.3s ease;
}

.plan-feature-card:hover .icon {
  transform: scale(1.1);
}

.plan-feature-card h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.plan-feature-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* ========== PLAN SAVINGS ========== */
.plan-hero-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.plan-hero-specs {
  color: var(--celeste);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

/* ========== PRICING COMPARE ========== */
.pricing-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 600px;
  margin: 40px auto 0;
}

.pricing-compare-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-compare-card:hover {
  border-color: var(--celeste);
  box-shadow: var(--shadow);
}

.pricing-compare-card.featured {
  border-color: var(--celeste);
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.05), rgba(2, 136, 209, 0.03));
}

.pricing-compare-card .badge-compare {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-compare-card .price-big {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
}

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

.pricing-compare-card .price-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.pricing-compare-card .price-save {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 14px;
  background: rgba(79, 195, 247, 0.12);
  color: var(--celeste-dark);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 20px;
}

/* ========== TRUST BADGES ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: var(--transition);
}

.trust-badge:hover {
  box-shadow: var(--shadow);
}

.trust-badge .icon {
  width: 44px;
  height: 44px;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-badge h4 {
  font-size: 0.92rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.trust-badge p {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin: 0;
}

/* ========== FAQ ========== */
.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  user-select: none;
  gap: 16px;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--celeste);
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(79, 195, 247, 0.1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--celeste);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

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

.blog-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 44, 99, 0.05), rgba(79, 195, 247, 0.1));
}

.blog-icon {
  font-size: 3.5rem;
  opacity: 0.6;
}

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(79, 195, 247, 0.12);
  color: var(--celeste-dark);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.blog-content h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.5;
}

.blog-content p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
  flex: 1;
}

.blog-link {
  margin-top: 16px;
  color: var(--celeste-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========== DOMAIN SEARCH ========== */
.domain-section {
  background: linear-gradient(135deg, var(--primary), #001a45);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.domain-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 12px;
}

.domain-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.domain-search-box {
  max-width: 700px;
  margin: 0 auto;
}

.domain-input-group {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.domain-input-group input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  font-size: 1.1rem;
  outline: none;
  background: white;
  color: var(--text-dark);
}

.domain-input-group input::placeholder {
  color: #aaa;
}

.domain-input-group button {
  padding: 18px 36px;
  background: var(--celeste);
  color: var(--primary);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.domain-input-group button:hover {
  background: var(--celeste-dark);
  color: white;
}

.domain-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.domain-tld {
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.domain-tld:hover,
.domain-tld.active {
  background: var(--celeste);
  color: var(--primary);
  border-color: var(--celeste);
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-info p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--celeste-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

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

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  font-family: inherit;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--celeste);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

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

.form-group button {
  padding: 16px;
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

/* ========== SERVICE CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  color: var(--celeste);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========== TECH TAGS ========== */
.tech-tag {
  display: inline-block;
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.tech-tag:hover {
  border-color: var(--celeste);
  color: var(--celeste-dark);
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.15);
  transform: translateY(-2px);
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: var(--bg-light);
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  position: relative;
  border: none;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand img {
  height: 42px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--celeste);
  color: var(--white);
  transform: translateY(-2px);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

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

.footer-links .footer-icon {
  margin-right: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .heart {
  color: var(--celeste);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--celeste);
}

/* ========== MAP SECTION ========== */
.section-map {
  overflow: hidden;
}

.map-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.map-image {
  position: relative;
  align-self: center;
}

.map-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.map-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--celeste);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.25), 0 0 20px rgba(79, 195, 247, 0.3);
  animation: pinPulse 2s ease-in-out infinite;
}

.map-pin-star {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 68%;
  left: 24%;
  z-index: 2;
  animation: starFloat 3s ease-in-out infinite, starSpin 12s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.star-shine {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  animation: shinePulse 2s ease-in-out infinite;
  pointer-events: none;
}

.map-pin-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 57%;
  left: 20.5%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: shinePulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

@keyframes starFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(180deg); }
}

@keyframes starSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shinePulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ========== ANIMATIONS ========== */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

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

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

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

/* ========== PARALLAX SHAPES ========== */
.parallax-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.parallax-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.parallax-shape.dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.parallax-shape.ring {
  width: 60px;
  height: 60px;
  border: 2px solid var(--celeste);
  border-radius: 50%;
  background: transparent;
}

.parallax-shape.square {
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  background: transparent;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 44, 99, 0.02), rgba(79, 195, 247, 0.04));
  pointer-events: none;
}

.drift-slow { animation: drift 20s linear infinite; }
.drift-medium { animation: drift 15s linear infinite; }
.drift-fast { animation: drift 10s linear infinite; }
.drift-down { animation: driftDown 12s ease-in-out infinite; }

@keyframes drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -20px) rotate(90deg); }
  50% { transform: translate(80px, 0) rotate(180deg); }
  75% { transform: translate(40px, 20px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

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

/* ========== RESPONSIVE ========== */
/* ========== CHECKOUT TWO-COLUMN ========== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.checkout-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow);
}

.checkout-sidebar-card .total-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.checkout-sidebar-card .total-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.checkout-sidebar-card .total-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
}

.checkout-sidebar-card .divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.spec-table {
  width: 100%;
}

.spec-table tr {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

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

.spec-table td:first-child {
  color: var(--text-gray);
  font-size: 0.88rem;
}

.spec-table td:last-child {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: right;
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.step-indicator .step {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-gray);
}

.step-indicator .step.active {
  color: var(--celeste-dark);
  font-weight: 700;
}

.step-indicator .step.done {
  color: #2ecc71;
}

.step-indicator .step .num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--border);
  color: var(--text-gray);
}

.step-indicator .step.active .num {
  background: var(--celeste);
  color: var(--white);
}

.step-indicator .step.done .num {
  background: #2ecc71;
  color: var(--white);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0, 44, 99, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header-nav a,
  .header-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    width: 100%;
  }

  .header-nav .btn-contacto {
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
  }

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

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .hero-image {
    display: none;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .wave-divider svg {
    height: 40px;
  }

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

  .checkout-sidebar-card {
    position: static;
  }

  .step-indicator {
    gap: 4px;
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  .step-indicator .step .num {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

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

  .stat-item {
    padding: 24px 16px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }
}