/* =======================================
   TELZANET – WEB3 GLASSMORPHISM THEME
   ======================================= */

:root {
  /* Brand Palette */
  --primary: #ff7b45;
  --primary-dark: #f25a2a;
  --primary-light: #ff9a6b;
  --secondary: #ffb88c;
  --accent: #ff6b35;

  --bg-body: #05060b;
  --bg-surface: #0d0f16;
  --bg-soft: rgba(255, 255, 255, 0.03);

  --text-primary: #f9fafb;
  --text-secondary: #a1a5b3;
  --text-muted: #6b6f7f;

  --success: #22c55e;
  --danger: #ef4444;
  --warning: #facc15;
  --info: #38bdf8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #ff7b45 0%, #ffb88c 100%);
  --gradient-secondary: linear-gradient(135deg, #f25a2a 0%, #ff9a6b 100%);
  --gradient-hero: radial-gradient(circle at top left, #ff7b45 0%, transparent 55%),
                   radial-gradient(circle at bottom right, #ffb88c 0%, transparent 55%);
  --gradient-chip: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));

  /* Shadows */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-glass: 0 16px 40px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 0 1px rgba(255, 184, 140, 0.45), 0 18px 50px rgba(255, 123, 69, 0.4);

  /* Radius & Transitions */
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --transition-fast: all 0.18s ease-out;
  --transition-base: all 0.25s ease-out;
  --transition-slow: all 0.45s ease-out;
}

/* Reset + Base */

*,
*::before,
*::after {
  box-sizing: border-box;
  list-style: none !important;
  list-style-type: none !important;
}

html {
 scroll-behavior: smooth;
}

body {
    
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Poppins", sans-serif;
  background: radial-gradient(circle at top, #12131d 0, #05060b 50%, #020308 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container-nosotros{
    padding: 100px 0 100px 0 !important;
}
.container-planes{
      background: radial-gradient(circle at top, #12131d 0, #05060b 50%, #020308 100%) !important;
}
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Utility */

.section {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--secondary);
}

.section-title {
  font-size: 2.15rem;
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  max-width: 640px;
  margin: 0.25rem auto 0;
  color: var(--text-secondary);
}

/* Buttons */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition-base);
}

.btn-primary,
.btn-gradient {
  background-image: var(--gradient-primary);
  color: #0b0b0f;
  box-shadow: var(--shadow-glow);
}

.btn-primary::before,
.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gradient-secondary);
  opacity: 0;
  transition: var(--transition-slow);
  z-index: -1;
}

.btn-primary:hover::before,
.btn-gradient:hover::before {
  opacity: 1;
}

.btn-primary:hover,
.btn-gradient:hover {
  transform: translateY(-1px) scale(1.02);
}

.btn-outline-primary {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(255, 184, 140, 0.7);
}

.btn-outline-primary:hover {
  background: rgba(255, 184, 140, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 123, 69, 0.4);
}

/* NAVBAR */

.navbar {
  padding: 0.85rem 0;
  transition: var(--transition-base);
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5, 6, 11, 0.88), rgba(5, 6, 11, 0.65));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  background: rgba(5, 6, 11, 0.95);
  box-shadow: var(--shadow-soft);
}

.navbar-brand img {
  height: 52px;
  transition: var(--transition-base);
}

.navbar-brand img:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.navbar-nav .nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.25rem 0.9rem;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background-image: var(--gradient-secondary);
  transform: translateX(-50%);
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 80px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  margin-bottom: 1.1rem;
}

.hero-title .gradient-text {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.stat-item {
  min-width: 120px;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(255, 184, 140, 0.25), transparent 60%),
              radial-gradient(circle at bottom, rgba(255, 123, 69, 0.16), transparent 65%);
  padding: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.hero-image-inner {
  border-radius: inherit;
  background: radial-gradient(circle at top left, #0d0f16, #05060b);
  padding: 1.6rem;
  position: relative;
}

.hero-image-inner img {
  border-radius: calc(var(--radius-lg) - 6px);
  opacity: 0.96;
}

/* Glass floating cards (if present) */

.floating-card {
  position: absolute;
  background: rgba(11, 12, 22, 0.95);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glass);
  font-size: 0.8rem;
}

.floating-card i {
  color: var(--secondary);
}

.floating-card.card-1 { top: 14%; right: 6%; }
.floating-card.card-2 { bottom: 14%; left: 2%; }
.floating-card.card-3 { bottom: 6%; right: 20%; }

/* Scroll indicator */

.hero-scroll .scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: var(--secondary);
  font-size: 1.1rem;
  opacity: 0.7;
}

/* FEATURES / SERVICES / PLANS SHARED CARD STYLE */

.feature-card,
.service-card,
.plan-card,
.testimonial-card,
.contact-info,
.contact-form-wrapper,
.tech-comparison {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(10, 11, 20, 0.96));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.feature-card::before,
.service-card::before,
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 184, 140, 0.22), transparent 60%);
  opacity: 0;
  transition: var(--transition-slow);
  pointer-events: none;
}

.feature-card:hover,
.service-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before,
.service-card:hover::before,
.plan-card:hover::before {
  opacity: 1;
}

/* Feature icons */

.feature-icon,
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(255, 184, 140, 0.8), rgba(255, 123, 69, 0.5));
  color: #0b0b0f;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

/* Plans */

.plan-card {
  text-align: left;
}

.plan-card.featured {
  border: 1px solid rgba(255, 184, 140, 0.9);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.plan-price {
  margin: 1.2rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan-price .currency {
  font-size: 1rem;
  opacity: 0.7;
}

.plan-price .amount {
  font-size: 2.1rem;
  font-weight: 700;
}

.plan-price .period {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}

.plan-features i {
  font-size: 0.9rem;
  color: var(--secondary);
}

/* About */

.about {
  background: radial-gradient(circle at top, rgba(255, 184, 140, 0.05), transparent 60%);
}

.about-image img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin: 1.7rem 0;
}

.stat-box {
  flex: 1 1 30%;
  min-width: 140px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box .stat-icon i {
  color: var(--secondary);
}

/* Technology */

.tech-benefit {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 184, 140, 0.16);
  color: var(--secondary);
}

.tech-comparison {
  margin-top: 2.2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table thead th {
  color: var(--text-secondary);
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Testimonials */

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 0.92rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0.9rem 0 1.4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #ffb88c, #ff7b45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b0b0f;
}

/* Contact */

.contact-info {
  height: 100%;
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: var(--secondary);
}

.contact-form .form-control,
.contact-form textarea,
.contact-form select {
  background: rgba(10, 11, 20, 0.95);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
}

.contact-form .form-control:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(255, 184, 140, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 184, 140, 0.35);
}

/* Footer */

.footer {
  padding: 60px 0 28px;
  background: radial-gradient(circle at top, #141625 0, #05060b 48%, #020308 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.4rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2.8rem;
  padding-top: 1.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating buttons */

.whatsapp-float,
.scroll-to-top {
  position: fixed;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: var(--transition-base);
}

.whatsapp-float {
  width: 54px;
  height: 54px;
  bottom: 26px;
  right: 22px;
  font-size: 1.25rem;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
}

.scroll-to-top {
  width: 42px;
  height: 42px;
  bottom: 92px;
  right: 26px;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  background: rgba(12, 16, 26, 0.95);
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive tweaks */

@media (max-width: 991px) {
  .hero {
    padding-top: 120px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-stats {
    gap: 1.2rem;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .feature-card,
  .service-card,
  .plan-card,
  .testimonial-card,
  .contact-info,
  .contact-form-wrapper,
  .tech-comparison {
    padding: 1.4rem 1.3rem;
  }
  .hero {
    text-align: center;
  }
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero {
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 1.95rem;
  }
}
