@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
:root {
  --negro: #111111;
  --dorado: #ffb300;
  --verde: #00c48c;
  --gris: #b0b3b8;
  --blanco: #f9f9f9;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", Arial, sans-serif;
  background: linear-gradient(135deg, #111111 0%, #232526 100%);
  color: var(--blanco);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding: 5%;
}
#threejs-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
  filter: blur(0.5px) brightness(1.1) saturate(1.2);
  mix-blend-mode: lighten;
}
main {
  position: relative;
  z-index: 200;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem 1rem;
  backdrop-filter: blur(2px);
}
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  width: 100%;
  padding: 0;
  background: none;
}
.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    #ffb30033 0%,
    #00c48c22 60%,
    transparent 100%
  );
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  filter: blur(8px) brightness(1.2);
  opacity: 0.7;
  animation: heroGlow 6s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% {
    opacity: 0.7;
    filter: blur(8px) brightness(1.2);
  }
  100% {
    opacity: 1;
    filter: blur(16px) brightness(1.4);
  }
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--dorado);
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 32px #ffb30077, 0 1px 0 #fff2;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}
.hero p {
  font-size: 1.25rem;
  color: var(--blanco);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 8px #000a;
}
.hero-cta-group {
  margin: 2.2rem 0 1.2rem 0;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  position: relative;
  z-index: 2;
}
.hero-badge {
  background: linear-gradient(90deg, var(--dorado) 60%, var(--verde) 100%);
  color: var(--negro);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 1.2rem;
  padding: 0.45rem 1.2rem;
  box-shadow: 0 2px 12px #ffb30033;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  display: inline-block;
  border: 1.5px solid #fff2;
  opacity: 0.93;
  transition: background 0.2s, color 0.2s;
}
.hero-badge:hover {
  background: linear-gradient(90deg, var(--verde) 60%, var(--dorado) 100%);
  color: var(--blanco);
}
.cta-btn {
  background: linear-gradient(90deg, var(--dorado) 0%, var(--verde) 100%);
  color: var(--negro);
  font-weight: 800;
  padding: 1.1rem 2.7rem;
  border: none;
  border-radius: 2.5rem;
  font-size: 1.25rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 24px #ffb30055, 0 1.5px 0 #00c48c44;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
  text-align: center;
}
.cta-btn:hover {
  background: linear-gradient(90deg, var(--verde) 0%, var(--dorado) 100%);
  color: var(--blanco);
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px #00c48c55, 0 1.5px 0 #ffb30044;
}
section {
  margin-bottom: 2.5rem;
  background: linear-gradient(120deg, #181818cc 60%, #232526cc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px #b0b3b822, 0 1.5px 0 #ffb30022;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  border: 1px solid #222;
  position: relative;
  overflow: hidden;
}
section:not(.hero)::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #00c48c33 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}
h2 {
  color: var(--verde);
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 1px 8px #00c48c33;
  position: relative;
  z-index: 1;
}
ul,
ol {
  position: relative;
  z-index: 1;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 1.2rem;
  background: transparent;
  box-shadow: 0 1px 8px #ffb30022;
  border-radius: 1rem;
  overflow: hidden;
}
table th,
table td {
  border: 1px solid var(--gris);
  padding: 0.9rem 0.7rem;
  text-align: left;
  font-size: 1.05rem;
  background: rgba(34, 34, 34, 0.85);
}
table th {
  background: linear-gradient(90deg, var(--dorado) 60%, var(--gris) 100%);
  color: var(--negro);
  font-weight: 800;
  letter-spacing: 0.5px;
}
table tr:nth-child(even) td {
  background: #232526cc;
}
.precio {
  font-size: 2.2rem;
  color: var(--dorado);
  font-weight: 900;
  margin: 1.2rem 0;
  text-shadow: 0 2px 16px #ffb30077;
}
.bonos {
  padding: 5%;
}
.bonos ol {
  margin-left: 1.2rem;
  font-size: 1.1rem;
  color: var(--dorado);
  font-weight: 600;
}
blockquote {
  background: linear-gradient(90deg, var(--gris) 80%, var(--blanco) 100%);
  color: var(--negro);
  border-left: 6px solid var(--dorado);
  padding: 1.2rem 1.5rem;
  border-radius: 0.9rem;
  font-style: italic;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px #ffb30022;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
details {
  margin-bottom: 1.1rem;
  background: #181818ee;
  border-radius: 0.7rem;
  padding: 0.9rem 1.2rem;
  color: var(--blanco);
  box-shadow: 0 1px 8px #00c48c22;
  border: 1px solid #222;
}
details[open] {
  border-color: var(--verde);
  background: #232526ee;
}
footer {
  text-align: center;
  color: var(--gris);
  margin-top: 2.5rem;
  font-size: 1.05rem;
  padding-bottom: 1.5rem;
}
footer .redes a {
  color: var(--dorado);
  margin: 0 0.7rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
footer .redes a:hover {
  color: var(--verde);
}
footer .legal {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--gris);
}
@media (max-width: 900px) {
  main {
    padding: 0.5rem 0.1rem 1.5rem 0.1rem;
    max-width: 100vw;
  }
  .hero {
    min-height: 0;
    padding: 0;
  }
  .hero-bg-glow {
    width: 220px;
    height: 220px;
  }
  .hero-content,
  .hero-main {
    padding: 1.1rem 0.5rem 0.7rem 0.5rem;
    border-radius: 1rem;
    max-width: 98vw;
    min-height: 0;
  }
  .hero h1 {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 0.98rem;
    margin-bottom: 1.1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.1rem 0 0.7rem 0;
  }
  .hero-badges {
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.5rem;
  }
  .hero-badge {
    font-size: 0.85rem;
    padding: 0.32rem 0.8rem;
    border-radius: 0.8rem;
  }
  section {
    padding: 0.8rem 0.2rem;
    border-radius: 1rem;
    margin-bottom: 1.2rem;
  }
  h2 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }
  .core-offer {
    padding: 5%;
  }
  .core-offer-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  .core-card {
    padding: 0.8rem 0.3rem 0.7rem 0.3rem;
    min-height: 120px;
    border-radius: 0.8rem;
  }
  .core-icon {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .core-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
  }
  .core-card p {
    font-size: 0.89rem;
  }
  .bonos-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  .bono-card {
    padding: 0.8rem 0.3rem 0.7rem 0.3rem;
    min-height: 90px;
    border-radius: 0.8rem;
  }
  .bono-icon {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
  .bono-card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
  }
  .bono-card p {
    font-size: 0.85rem;
  }
  .precio-card {
    padding: 0.8rem 0.3rem 0.7rem 0.3rem;
    max-width: 100%;
    border-radius: 1.1rem;
  }
  .precio-valor {
    gap: 0.3rem;
    margin-bottom: 0.7rem;
  }
  .precio-icon {
    font-size: 1.1rem;
  }
  .precio-num {
    font-size: 1.3rem;
  }
  .precio-justificacion {
    font-size: 0.89rem;
    padding: 0.5rem 0.2rem 0.5rem 0.2rem;
    border-radius: 0.7rem;
    margin-bottom: 1rem;
  }
  .precio-btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 1.5rem;
    margin-top: 0.3rem;
  }
  blockquote {
    font-size: 0.92rem;
    padding: 0.7rem 0.5rem;
    border-radius: 0.6rem;
  }
  details {
    padding: 0.5rem 0.2rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
  }
  footer {
    font-size: 0.92rem;
    padding-bottom: 0.7rem;
    margin-top: 1.2rem;
  }
  footer .legal {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
}
.core-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.core-card {
  background: linear-gradient(120deg, #181818ee 60%, #232526ee 100%);
  border-radius: 1.3rem;
  box-shadow: 0 4px 24px #ffb30033, 0 1.5px 0 #00c48c33;
  border: 1.5px solid #222;
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.core-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.core-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 8px 32px #ffb30077, 0 2px 0 #00c48c55;
  border: 1.5px solid var(--dorado);
}
.core-icon {
  font-size: 2.7rem;
  margin-bottom: 1.1rem;
  display: inline-block;
  background: linear-gradient(90deg, var(--dorado) 60%, var(--verde) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.core-card h3 {
  color: var(--verde);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px #00c48c33;
}
.core-card p {
  color: var(--blanco);
  font-size: 1.05rem;
  font-weight: 500;
  text-shadow: 0 1px 8px #000a;
}
@media (max-width: 600px) {
  .core-offer-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .core-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    min-height: 180px;
  }
  .core-icon {
    font-size: 2rem;
  }
  .core-card h3 {
    font-size: 1.05rem;
  }
  .core-card p {
    font-size: 0.95rem;
  }
}
.bonos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem 1.5rem;
  margin-top: 2.2rem;
  position: relative;
  z-index: 1;
}
.bono-card {
  background: linear-gradient(120deg, #181818ee 60%, #232526ee 100%);
  border-radius: 1.3rem;
  box-shadow: 0 4px 24px #00c48c33, 0 1.5px 0 #ffb30033;
  border: 1.5px solid #222;
  padding: 2.1rem 1.1rem 1.4rem 1.1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.bono-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.bono-card:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px #00c48c77, 0 2px 0 #ffb30055;
  border: 1.5px solid var(--verde);
}
.bono-icon {
  font-size: 2.5rem;
  margin-bottom: 1.1rem;
  display: inline-block;
  background: linear-gradient(90deg, var(--verde) 60%, var(--dorado) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bono-card h3 {
  color: var(--dorado);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px #ffb30033;
}
.bono-card p {
  color: var(--blanco);
  font-size: 1.01rem;
  font-weight: 500;
  text-shadow: 0 1px 8px #000a;
}
@media (max-width: 600px) {
  .bonos-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .bono-card {
    padding: 1.1rem 0.7rem 0.8rem 0.7rem;
    min-height: 140px;
  }
  .bono-icon {
    font-size: 1.7rem;
  }
  .bono-card h3 {
    font-size: 1rem;
  }
  .bono-card p {
    font-size: 0.92rem;
  }
}

/* Sección Precio y Planes */
.precios {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5%;
}
.precios h2 {
  text-align: center;
}
.precio-card {
  background: linear-gradient(120deg, #181818ee 60%, #232526ee 100%);
  border-radius: 1.7rem;
  box-shadow: 0 8px 32px #00c48c33, 0 1.5px 0 #ffb30033;
  border: 2px solid var(--dorado);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  min-width: 320px;
  max-width: 420px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.precio-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.precio-valor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.precio-icon {
  font-size: 2.2rem;
  background: linear-gradient(90deg, var(--dorado) 60%, var(--verde) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.precio-num {
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--dorado);
  text-shadow: 0 2px 16px #ffb30077;
  letter-spacing: 1.5px;
}
.precio-justificacion {
  margin-bottom: 1.7rem;
  color: var(--blanco);
  font-size: 1.08rem;
  font-weight: 500;
  text-shadow: 0 1px 8px #000a;
  background: linear-gradient(90deg, #232526cc 60%, #181818cc 100%);
  border-radius: 1rem;
  padding: 1.1rem 1rem 1rem 1rem;
  margin-top: 0.5rem;
  border: 1px solid #222;
}
.precio-btn {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
  padding: 1.1rem 2.7rem;
  border-radius: 2.5rem;
  font-weight: 800;
  box-shadow: 0 4px 24px #00c48c55, 0 1.5px 0 #ffb30044;
  background: linear-gradient(90deg, var(--verde) 0%, var(--dorado) 100%);
  color: var(--negro);
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  display: inline-block;
}
.precio-btn:hover {
  background: linear-gradient(90deg, var(--dorado) 0%, var(--verde) 100%);
  color: var(--blanco);
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px #ffb30077, 0 1.5px 0 #00c48c44;
}
@media (max-width: 900px) {
  .precio-card {
    padding: 1.1rem 0.5rem 1.2rem 0.5rem;
    min-width: unset;
    max-width: 100%;
    border-radius: 1.1rem;
    margin-bottom: 2.2rem;
  }
  .precio-btn {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 1.5rem;
    margin-top: 1.1rem;
    margin-bottom: 0.2rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: inline-block;
  }
}

.hero-content,
.hero-main {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(20, 20, 20, 0.92);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  box-shadow: 0 2px 16px #2228, 0 1.5px 0 #ffb30011;
  position: relative;
  z-index: 2;
  min-height: 340px;
}
@media (max-width: 900px) {
  .hero-content,
  .hero-main {
    padding: 1.1rem 0.5rem 0.7rem 0.5rem;
    border-radius: 1rem;
    max-width: 98vw;
    min-height: 0;
  }
}

.garantia {
  padding: 5%;
}

.garantia-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #181818ee 60%, #232526ee 100%);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #00c48c22, 0 1.5px 0 #ffb30011;
  border: 1.5px solid #232526;
  padding: 2rem 2rem 2rem 1.2rem;
  margin: 0 auto 1.5rem auto;
  max-width: 600px;
  min-height: 120px;
  gap: 1.2rem;
  position: relative;
}
.garantia-icon {
  font-size: 2.5rem;
  color: var(--verde);
  background: linear-gradient(90deg, var(--verde) 60%, var(--gris) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}
.garantia-content h2 {
  color: var(--verde);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.garantia-text {
  color: var(--blanco);
  font-size: 1.05rem;
  font-weight: 500;
  text-shadow: 0 1px 8px #000a;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
  margin: 0;
  border-left: 4px solid var(--verde);
}
@media (max-width: 900px) {
  .garantia-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 0.5rem 1rem 0.5rem;
    border-radius: 0.7rem;
    max-width: 98vw;
    gap: 0.7rem;
  }
  .garantia-icon {
    font-size: 1.5rem;
    min-width: 32px;
  }
  .garantia-content h2 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
  }
  .garantia-text {
    font-size: 0.92rem;
    padding: 0.5rem 0.5rem;
    border-radius: 0.5rem;
  }
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-main {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(20, 20, 20, 0.82);
  border-radius: 1.2rem;
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  box-shadow: 0 2px 16px #2228, 0 1.5px 0 #ffb30011;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--dorado);
  text-align: center;
  margin-bottom: 1.1rem;
  letter-spacing: 1.2px;
  line-height: 1.18;
  text-shadow: 0 2px 16px #ffb30033;
}
.hero-separator {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--dorado) 60%, var(--verde) 100%);
  border-radius: 2px;
  margin: 0 auto 1.2rem auto;
  opacity: 0.7;
}
.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.hero-lead {
  font-size: 1.13rem;
  color: var(--blanco);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.2rem;
  letter-spacing: 0.2px;
}
.hero-highlight {
  font-size: 1.08rem;
  color: var(--verde);
  font-weight: 700;
  text-align: center;
  background: rgba(0, 196, 140, 0.07);
  border-radius: 0.7rem;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0.1rem;
}
.hero-detail {
  font-size: 1.01rem;
  color: var(--blanco);
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.1rem;
}
.hero-guarantee {
  font-size: 0.98rem;
  color: var(--gris);
  text-align: center;
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
  font-weight: 500;
  background: rgba(176, 179, 184, 0.08);
  border-radius: 0.6rem;
  padding: 0.5rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.hero-guarantee-badge {
  color: var(--verde);
  font-weight: 800;
  margin-right: 0.3rem;
}
@media (max-width: 900px) {
  .hero-flex {
    min-height: 0;
  }
  .hero-main {
    padding: 1.1rem 0.5rem 0.7rem 0.5rem;
    border-radius: 0.7rem;
    max-width: 98vw;
  }
  .hero-title {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
  }
  .hero-separator {
    width: 36px;
    height: 3px;
    margin-bottom: 0.7rem;
  }
  .hero-copy {
    gap: 0.4rem;
    margin-bottom: 0.7rem;
  }
  .hero-lead {
    font-size: 0.98rem;
  }
  .hero-highlight {
    font-size: 0.95rem;
    padding: 0.3rem 0.4rem;
  }
  .hero-detail {
    font-size: 0.91rem;
  }
  .hero-guarantee {
    font-size: 0.89rem;
    padding: 0.3rem 0.4rem;
    border-radius: 0.4rem;
    flex-direction: column;
  }
}

.problema-card {
  background: linear-gradient(120deg, #181818ee 60%, #232526ee 100%);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #ffb30022, 0 1.5px 0 #00c48c11;
  border: 1.5px solid #232526;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  margin: 0 auto 1.5rem auto;
  max-width: 600px;
  position: relative;
}
.problema-card h2 {
  padding: 0 5%;
}
.problema-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.problema-icon {
  font-size: 1.3rem;
  margin-right: 0.6rem;
  vertical-align: middle;
}
.problema-list li {
  color: var(--blanco);
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  box-shadow: 0 1px 8px #ffb30011;
}
.solucion {
  padding: 5%;
}
.solucion-card {
  background: linear-gradient(90deg, #232526ee 60%, #181818ee 100%);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #00c48c22, 0 1.5px 0 #ffb30011;
  border: 1.5px solid #232526;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  margin: 0 auto 1.5rem auto;
  max-width: 600px;
  position: relative;
  text-align: center;
}
.solucion-text {
  color: var(--verde);
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: 1.1rem;
  background: rgba(0, 196, 140, 0.07);
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
  display: inline-block;
}
@media (max-width: 900px) {
  .problema-card,
  .solucion-card {
    padding: 1.1rem 0.5rem 0.7rem 0.5rem;
    border-radius: 0.7rem;
    max-width: 98vw;
  }
  .problema-list li {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0.5rem;
  }
  .problema-icon {
    font-size: 1.1rem;
    margin-right: 0.4rem;
  }
  .solucion-text {
    font-size: 0.98rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0.5rem;
  }
}

.faq {
  padding: 5%;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem 1.5rem;
  margin-top: 2.2rem;
  position: relative;
  z-index: 1;
}
.faq-card {
  background: linear-gradient(120deg, #181818ee 60%, #232526ee 100%);
  border-radius: 1.3rem;
  box-shadow: 0 4px 24px #00c48c33, 0 1.5px 0 #ffb30033;
  border: 1.5px solid #222;
  padding: 2.1rem 1.1rem 1.4rem 1.1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.faq-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.faq-card:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px #00c48c77, 0 2px 0 #ffb30055;
  border: 1.5px solid var(--verde);
}
.faq-icon {
  font-size: 2.1rem;
  margin-bottom: 1.1rem;
  display: inline-block;
  background: linear-gradient(90deg, var(--verde) 60%, var(--dorado) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px #00c48c33);
}
.faq-card details {
  width: 100%;
}
.faq-card summary {
  color: var(--dorado);
  font-size: 1.13rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
}
.faq-card details[open] summary {
  color: var(--verde);
}
.faq-card p {
  color: var(--blanco);
  font-size: 1.01rem;
  font-weight: 500;
  text-shadow: 0 1px 8px #000a;
  margin-top: 0.5rem;
  background: rgba(0, 196, 140, 0.07);
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
}
.faq-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.faq-card ul li {
  color: var(--blanco);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
}
.faq-card ul li:before {
  content: "•";
  color: var(--verde);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.faq-card ul li:last-child {
  margin-bottom: 0;
}
.faq-card ul li:hover {
  color: var(--verde);
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }
  .faq-card {
    padding: 1.1rem 0.5rem 0.8rem 0.5rem;
    min-height: 80px;
    border-radius: 0.8rem;
  }
  .faq-icon {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .faq-card summary {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  .faq-card p {
    font-size: 0.92rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0.5rem;
  }
  .faq-card ul li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
  }
}

.optin {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5% 0 0 0;
  background: none;
}
.optin-card {
  background: linear-gradient(120deg, #181818ee 60%, #232526ee 100%);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px #00c48c33, 0 1.5px 0 #ffb30033;
  border: 2px solid var(--verde);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.optin-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.optin-card h2 {
  color: var(--dorado);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 16px #ffb30033;
}
.optin-lead {
  color: var(--verde);
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.optin-copy {
  color: var(--blanco);
  font-size: 1.01rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.optin-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.optin-form input[type="email"] {
  padding: 0.9rem 1.2rem;
  border-radius: 2rem;
  border: 1.5px solid var(--gris);
  font-size: 1.05rem;
  outline: none;
  background: #232526;
  color: var(--blanco);
  width: 100%;
  min-width: 0;
  box-shadow: 0 2px 8px #00c48c22;
  transition: border 0.2s;
}
.optin-form input[type="email"]:focus {
  border: 1.5px solid var(--verde);
}
.optin-form button {
  padding: 0.9rem 1.5rem;
  border-radius: 2rem;
  border: none;
  background: linear-gradient(90deg, var(--verde) 0%, var(--dorado) 100%);
  color: var(--negro);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 2px 12px #00c48c33;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.optin-form button:hover {
  background: linear-gradient(90deg, var(--dorado) 0%, var(--verde) 100%);
  color: var(--blanco);
  transform: scale(1.04);
}
.optin-trust {
  color: var(--gris);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-style: italic;
}

.footer-card {
  background: #111;
  border-radius: 1.2rem 1.2rem 0 0;
  box-shadow: 0 -2px 12px #0004;
  border-top: none;
  padding: 1.5rem 1rem 1rem 1rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer-card h2 {
  color: #bbb;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 1.1px;
  text-shadow: none;
}
.footer-socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.01rem;
  font-weight: 500;
  padding: 0.2rem 0.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  background: none;
  color: #bbb;
  box-shadow: none;
  border: none;
  transition: color 0.2s, text-decoration 0.2s;
}
.footer-social:hover {
  color: #fff;
  text-decoration: underline;
  background: none;
  transform: none;
}
.footer-social span {
  font-weight: 700;
  color: #bbb;
}
.legal {
  color: #888;
  font-size: 0.93rem;
  margin-top: 1.2rem;
  text-align: center;
}
@media (max-width: 900px) {
  .footer-card {
    padding: 1rem 0.3rem 0.7rem 0.3rem;
    border-radius: 0.7rem 0.7rem 0 0;
    max-width: 100vw;
  }
  .footer-socials {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-social {
    font-size: 0.97rem;
    padding: 0.1rem 0.1rem;
    border-radius: 0.3rem;
  }
}

.optin-message {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.optin-message.success {
  background: rgba(0, 196, 140, 0.1);
  color: var(--verde);
  border: 1px solid var(--verde);
}
.optin-message.error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}
@media (max-width: 900px) {
  .optin-message {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0.5rem;
  }
}
