:root {
  color-scheme: light;
  --primary: #001e96;
  --secondary: #ffe600;
  --accent: #e11d48;
  --bg-light: #ffffff;
  --card-blue: #0047cc;
  --glow-blue: #00c3ff;
  --ecuapet-bg: #082279;
  --ecuapet-text: #ccfbfc;
  --ecuapet-accent: #f9e73c;
  --ecuapet-detail: #8b8a62;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.site-body {
  background: var(--bg-light);

  line-height: 1.5;
  transition: background 0.3s ease, color 0.3s ease;
  padding-top: 72px;
  background-image: url(./assets/backgrounds/backgroud\ 3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}


.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgb(0 30 150 / 50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  font-style: italic;
  color: #ffffff;
}

.brand-highlight {
  color: var(--secondary);
}

.brand-dots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  display: block;
}

.brand-dot-shift {
  transform: translateX(4px);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 24px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  background: #ffd83a;
  transform: scale(1.03);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 48px;
  overflow: hidden;
}


.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: pulse 5s ease-in-out infinite;
}

.hero-blob-yellow {
  top: 80px;
  right: 40px;
  width: 128px;
  height: 128px;
  background: #facc15;
}

.hero-blob-blue {
  bottom: 40px;
  left: 40px;
  width: 192px;
  height: 192px;

  opacity: 0.3;
}

.hero-emoji {
  position: absolute;
}

.hero-emoji-top {
  top: 120px;
  right: 16px;
  animation: bounce 2.6s ease-in-out infinite;
  display: none;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.hero-headline {
  margin-bottom: 32px;
}

.hero-kicker {
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 6vw, 64px);
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0 0 16px;
}

.hero-title-wrap {
  position: relative;
  display: inline-block;
}

.hero-title-accent {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: skewX(-12deg);
  border-radius: 8px;
  opacity: 0.9;
  filter: blur(6px);
}

.hero-title {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  padding: 4px 32px;
  font-style: italic;
  letter-spacing: 1px;
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 48px;
}

.hero-subtitle-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-text {
  margin: 0;
  color: #e5e7eb;
  font-size: clamp(16px, 2vw, 20px);
}

.hero-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.3);
}


.hero-emoji-card {
  bottom: -40px;
  left: -40px;
}

.hero-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-field {
  position: relative;
}

.form-field-glow {
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  opacity: 0.3;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.form-field:hover .form-field-glow {
  opacity: 0.7;
}

.form-field-inner {
  position: relative;
  border-radius: 16px;
  border: 2px solid #facc15;
  padding: 4px;
  background: var(--primary);
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.3);
}


.form-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.form-input::placeholder {
  color: #d1d5db;
}

.hero-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: left;
}

.hero-consent-check {
  display: flex;
  align-items: center;
  padding-top: 2px;
}

.hero-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
  border-radius: 4px;
  cursor: pointer;
}

.hero-consent-label {
  font-size: 12px;
  color: #e5e7eb;
  font-weight: 300;
}

.primary-cta {
  width: 40%;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  background: linear-gradient(90deg, var(--secondary), #facc15);
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.hero-whatsapp {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--bg-light);
  text-decoration: none;
}

.hero-whatsapp-icon {
  font-size: 36px;
  color: var(--secondary);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-whatsapp-number {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: 1px;
}

.hero-consent,
.primary-cta {
  grid-column: 1 / -1;
}

.plans {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.plans-bg {
  position: absolute;
  inset: 0;

  z-index: 0;
}

.plans-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.plans-glow-left {
  width: 50%;
  height: 50%;
  left: -10%;
  top: -10%;
}

.plans-glow-right {
  width: 40%;
  height: 40%;
  right: -10%;
  bottom: -10%;
  background: var(--ecuapet-accent);
  opacity: 0.1;
}

.plans-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  z-index: 1;
}

.plans-content {
  position: relative;
  z-index: 2;
  color: var(--ecuapet-text);
}

.plans-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.plans-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.plans-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 800;
  font-style: italic;
  margin: 24px 0 0;
}

.plans-tagline-accent {
  color: var(--ecuapet-accent);
}

.plans-tagline-main {
  color: rgba(255, 255, 255, 0.8);
}

.plans-tagline-detail {
  color: var(--ecuapet-detail);
  font-size: 18px;
}

.plans-tagline-highlight {
  background: linear-gradient(90deg, var(--ecuapet-accent), #ffffff);
  -webkit-background-clip: text;
  background-clip: calc();
  color: transparent;
  font-weight: 900;
}

.plans-emoji {
  position: absolute;
  right: -90px;
  top: 120px;
  display: none;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: end;
}

.plan-wrap {
  position: relative;
}

.plan-emoji {
  position: absolute;
  top: -51px;
  left: -85px;
  transform: rotate(-31deg);
  display: none;
}

.plan-card {
  background: rgba(12, 40, 140, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 231, 60, 0.5);
  box-shadow: 0 0 20px rgba(249, 231, 60, 0.25);
}

.plan-popular {
  margin-top: 0;
}

.plan-popular-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(249, 231, 60, 0.2);
  filter: blur(32px);
  z-index: 0;
}

.plan-card-popular {
  border: 2px solid var(--ecuapet-accent);
  position: relative;
  z-index: 1;
}

.plan-card-popular:hover {
  transform: scale(1.03);
}

.plan-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ecuapet-accent);
  color: var(--ecuapet-bg);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 12px;
  border-bottom-left-radius: 12px;
  border-top-right-radius: 20px;
  text-transform: uppercase;
}

.plan-speed-value {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
}

.plan-speed-value-xl {
  font-size: 72px;
}

.plan-speed-unit {
  font-size: 18px;
  color: var(--ecuapet-accent);
  font-weight: 700;
  margin-top: 12px;
}

.plan-speed-unit-xl {
  font-size: 20px;
  margin-top: 16px;
}

.plan-speed-note {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(8, 34, 121, 0.8);
  border: 1px solid rgba(139, 138, 98, 0.3);
  color: var(--ecuapet-detail);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-speed-note-accent {
  background: var(--ecuapet-accent);
  color: var(--ecuapet-bg);
}

.plan-body {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.plan-name {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-name-xl {
  font-size: 28px;
}

.plan-price-label {
  font-size: 14px;
  color: var(--ecuapet-detail);
  margin: 0;
}

.plan-price {
  font-size: 40px;
  color: var(--ecuapet-accent);
  font-weight: 900;
  margin: 4px 0;
}

.plan-price-xl {
  font-size: 48px;
}

.plan-price-suffix {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ecuapet-text);
  margin: 0;
}

.plan-iva {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  margin-top: 16px;
  padding-top: 16px;
}

.plan-iva-label {
  font-size: 12px;
  color: var(--ecuapet-detail);
  margin: 0 0 6px;
}

.plan-iva-value {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.plan-iva-value-xl {
  font-size: 28px;
}

.plan-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(249, 231, 60, 0.5);
  background: rgba(8, 34, 121, 0.8);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.plan-cta span.material-symbols-outlined {
  color: var(--ecuapet-accent);
}

.plan-cta-accent {
  background: var(--ecuapet-accent);
  color: var(--ecuapet-bg);
  border-color: transparent;
}

.plan-cta-accent span.material-symbols-outlined {
  color: var(--ecuapet-bg);
}

.discount {
  margin-top: 48px;
  text-align: center;
  display: grid;
  gap: 24px;
}

.discount-title-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.discount-glow {
  position: absolute;
  inset: 0;
  background: rgba(249, 231, 60, 0.2);
  filter: blur(24px);
  border-radius: 999px;
}

.discount-title {
  position: relative;
  margin: 0;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
}

.discount-highlight {
  display: inline-block;
  margin: 0 8px;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--ecuapet-accent);
  animation: pulse 2.4s ease-in-out infinite;
}

.discount-break {
  display: none;
}

.discount-note {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ecuapet-text);
  font-weight: 600;
  font-size: 14px;
}

.discount-note-small {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  color: var(--ecuapet-detail);
}

.plans-footer {
  margin-top: 40px;
  text-align: center;
}

.plans-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ecuapet-detail);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.plans-footer-link:hover {
  color: var(--ecuapet-accent);
  transform: translateX(4px);
}

.site-footer {
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  padding: 32px 0;
}


.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: #6b7280;
  font-size: 14px;
}


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

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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


.ecuapet-pattern {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImEiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTTAgNDBoNDBWMEgwdi4yaDQwdjM5LjhIMHYuMnoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMyIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhKSIvPjwvc3ZnPg==");
}

.emoji-large {
  width: 15dvw;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.emoji-xl {
  width: 15dvw;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.emoji-small {
  width: 15dvw;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.35));
}

.emoji-tilt {
  transform: rotate(12deg);
}


@media (max-width: 800px) {
    .site-nav .logo {
      width: 30dvw;
      padding-left: 20px;
    }
    img.bbb {
        width: 85dvw;
    }
    .primary-cta{
      width: 70dvw;
    }

    .hero-emoji-card {
        bottom: -83px;
        left: 18px;
    }


}


@media (min-width: 768px) {
  .hero-emoji-top {
    right: 80px;
    display: block;
  }

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

  .hero-consent-label {
    font-size: 14px;
  }

  .primary-cta {
    width: 30dvw;
    justify-self: anchor-center;
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .plan-emoji {
    display: block;
  }

  .plans-emoji {
    display: block;
  }

  .plan-card-popular {
    transform: translateY(-16px);
  }

  .plan-card-popular:hover {
    transform: translateY(-16px) scale(1.03);
  }

  .footer-inner {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 96px;
  }

  .discount-break {
    display: inline;
  }
}

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

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #001055;
}

::-webkit-scrollbar-thumb {
  background: #00c3ff;
  border-radius: 4px;
}
