/* =========================
   🎨 VARIABLES
========================= */
:root {
  --pink:  #FC3DFC;
  --cyan:  #5FE8FF;
  --blue:  #1B94EF;
  --white: #FFF;

  --glass:        rgba(255, 255, 255, 0.06);
  --border:       rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.12);
}

/* =========================
   🔄 RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lexend', sans-serif;
}

body {
  background: #0F0815;
  color: white;
}

a {
  font-style: normal;
  color: var(--white);
  text-decoration: none;
}

/* =========================
   🔲 SECTIONS
========================= */
section {
  padding: 80px 10%;
  text-align: center;
}

.logos,
.features,
.packages,
.testimonials,
.faq {
  padding: 20px 8%;
  text-align: center;
}

/* =========================
   🏷️ BADGE
========================= */
.badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: bold;
}

/* =========================
   💡 NEON FLICKER
========================= */
.neon-flicker {
  letter-spacing: 1.5px;
  text-shadow: 0 0 4px, 0 0 8px, 0 0 16px;
}

@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 4px  rgba(255, 255, 255, 0.9),
      0 0 10px rgba(95, 232, 255, 0.6),
      0 0 20px rgba(95, 232, 255, 0.4);
  }
  20%, 24%, 55% { opacity: 0.4; text-shadow: none; }
  21%, 56%      { opacity: 0.8; }
}

/* =========================
   🔘 BUTTONS
========================= */
.btn {
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(45deg, var(--pink), var(--cyan));
  border: none;
  color: var(--white);
  font-weight: 600;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(252, 61, 252, 0.45);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(95, 232, 255, 0.3);
}

/* =========================
   🧊 GLASS UTILITIES
========================= */
.glass-pro {
  position: relative;
  padding: 32px 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.glass-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.glass-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow:
    inset 0 0 20px rgba(95, 232, 255, 0.05),
    inset 0 0 40px rgba(95, 232, 255, 0.05);
  pointer-events: none;
}

.glass-pro:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(95, 232, 255, 0.4);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(95, 232, 255, 0.2),
    0 0 40px rgba(95, 232, 255, 0.15);
}

/* =========================
   🔲 NEON BORDER
========================= */
.neon-border {
  border: 1px solid rgba(95, 232, 255, 0.5);
}

.neon-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(45deg, transparent, rgba(95, 232, 255, 0.6), transparent);
  filter: blur(12px);
  opacity: 0.4;
  z-index: -1;
}

/* =========================
   🧭 NAV
========================= */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  z-index: 100;
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  backdrop-filter: blur(20px);
  background: var(--glass);
  border: 1px solid var(--border);
}

.nav__menu {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
}

.nav__menu a:hover {
  color: var(--cyan);
}

.logo {
  width: 130px;
}

/* =========================
   🦸 HERO
========================= */
.hero {
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: url('assets/bg-hero-fiestas.webp') no-repeat;
  background-size: cover;
  background-position: 65% center;
  position: relative;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5, 1, 10, 0.95) 0%,
      rgba(5, 1, 10, 0.85) 25%,
      rgba(5, 1, 10, 0.4)  55%,
      transparent          85%
    );
}

.hero__content {
  position: relative;
  max-width: 580px;
  margin-left: 8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-align: start;
}

.hero h1 span {
  color: var(--cyan);
  text-shadow:
    0 0 6px  rgba(95, 232, 255, 0.9),
    0 0 14px rgba(95, 232, 255, 0.6),
    0 0 28px rgba(27, 148, 239, 0.4);
}

.hero__desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 28px;
  text-align: start;
}

.hero__cta {
  display: flex;
  gap: 14px;
}

/* =========================
   ✨ FEATURES
========================= */
.features__title {
  font-size: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.features__title span {
  color: var(--cyan);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.icon-box {
  width: 50px;
  height: 50px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(252, 61, 252, 0.15);
  box-shadow:
    0 0 10px rgba(252, 61, 252, 0.5),
    0 0 20px rgba(252, 61, 252, 0.3);
}

.icon-box img {
  width: 22px;
}

.feature-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.5;
  margin-bottom: 14px;
}

.feature-link {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}

.feature-link:hover { opacity: 0.7; }

/* =========================
   🌟 BANNER
========================= */
.banner {
  padding: 0 8% 100px;
}

.banner__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(252, 61, 252, 0.12), rgba(95, 232, 255, 0.08));
  border: 1px solid rgba(252, 61, 252, 0.3);
}

.banner__inner h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.banner__inner p {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.banner__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.banner__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.banner__stat strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
}

.banner__stat span {
  font-size: 13px;
  opacity: 0.7;
}

/* =========================
   📦 PACKAGES
========================= */
.packages__title {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.packages__title span {
  color: var(--cyan);
}

.packages__desc {
  margin: 10px 0 48px;
  opacity: 0.7;
  font-size: 14px;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.package-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
}

.package-card.cyan {
  border: 1px solid rgba(95, 232, 255, 0.5);
  box-shadow: 0 0 10px rgba(95, 232, 255, 0.2);
}

.package-card.pink {
  border: 1px solid rgba(252, 61, 252, 0.8);
  box-shadow:
    0 0 20px rgba(252, 61, 252, 0.5),
    0 0 50px rgba(252, 61, 252, 0.2);
}

.badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--pink), var(--blue));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.package-card h5 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  opacity: 0.8;
}

.price {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1;
}

.price span {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
}

.package-card ul {
  margin-top: 22px;
  list-style: none;
}

.package-card li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  opacity: 0.85;
  line-height: 1.4;
}

.package-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 11px;
  top: 2px;
}

/* =========================
   🏢 LOGOS
========================= */
.logos__title {
  font-size: 18px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.logos__title span {
  color: var(--cyan);
}

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

.logo-card {
  position: relative;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-height: 150px;
  opacity: 0.9;
}

/* =========================
   💬 TESTIMONIALS
========================= */
.testimonials__title {
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 0;
}

.testimonials__title span {
  color: var(--cyan);
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 340px;
  padding: 28px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(95, 232, 255, 0.3);
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.testimonial.active {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 20px rgba(95, 232, 255, 0.4),
    0 0 60px rgba(95, 232, 255, 0.15);
}

.testimonial.pink {
  border: 1px solid rgba(252, 61, 252, 0.6);
}

.testimonial.pink.active {
  box-shadow:
    0 0 20px rgba(252, 61, 252, 0.6),
    0 0 60px rgba(252, 61, 252, 0.2);
}

.stars {
  color: gold;
  margin-bottom: 12px;
  font-size: 18px;
}

.testimonial h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial__footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.6;
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  background: transparent;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(252, 61, 252, 0.5);
  flex-shrink: 0;
  transition: box-shadow 0.2s;
  line-height: 1;
}

.carousel__btn:hover {
  box-shadow: 0 0 20px rgba(252, 61, 252, 0.7);
}

.carousel__dots {
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  display: inline-block;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active { background: var(--pink); }

/* =========================
   ❓ FAQ
========================= */
.faq__title {
  font-size: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.faq__title span { color: var(--cyan); }

.faq__list {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: left;
}

.faq-question::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(252, 61, 252, 0.6);
  pointer-events: none;
}

.faq-question .icon {
  flex-shrink: 0;
  color: var(--pink);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.faq-answer {
  text-align: start;
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}

/* =========================
   📝 FORM
========================= */
.form {
  position: relative;
  padding: 120px 8%;
}

.form__bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg-form.png') center/cover no-repeat;
}

.form__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.form__container {
  position: relative;
  display: flex;
  justify-content: center;
}

.form__box {
  width: 100%;
  max-width: 520px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.form__box h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.form__box h3 span { color: var(--cyan); }

.form__desc {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.field.full {
  grid-column: span 2;
}

.field label {
  font-size: 12px;
  margin-bottom: 6px;
  opacity: 0.9;
}

input,
select {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 14px;
  transition: border-color 0.2s;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--cyan);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("assets/arrow.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  background-color: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

select option {
  background: #1a0825;
  color: white;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 1px;
  padding: 0;
  cursor: pointer;
  accent-color: var(--pink);
}

.form__cta {
  grid-column: span 2;
  margin-top: 8px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
}

/* =========================
   🦶 FOOTER
========================= */
.footer {
  padding: 80px 8% 40px;
  background: linear-gradient(to bottom, #0a0014, #05010a);
}

.footer__container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer__info p {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.footer__social {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.footer__social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer__social a:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 8px rgba(95, 232, 255, 0.4);
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col h4 {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer__col a {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 8px;
  transition: opacity 0.2s ease;
}

.footer__col a:hover { opacity: 1; }

.footer__bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  opacity: 0.6;
}

/* =========================
   📐 TABLET (1024px ↓)
========================= */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .banner__inner h2 {
    font-size: 2rem;
  }
}

/* =========================
   📱 MOBILE (768px ↓)
========================= */
@media (max-width: 768px) {

  /* NAV */
  .nav {
    width: calc(100% - 24px);
    top: 12px;
  }

  .nav__inner {
    grid-template-columns: auto auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .nav__menu { display: none; }

  .logo { width: 110px; }

  /* HERO */
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 120px 0 80px;
    background-position: 70% center;
  }

  .hero__content {
    margin: 0;
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }

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

  .hero__desc {
    font-size: 14px;
    text-align: center;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  /* SECTIONS */
  section,
  .logos,
  .features,
  .packages,
  .testimonials,
  .faq {
    padding: 70px 5%;
  }

  .banner { padding: 0 5% 70px; }

  /* FEATURES */
  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .feature-card.glass-pro {
    padding: 24px 20px;
  }

  /* BANNER */
  .banner__inner {
    padding: 40px 24px;
  }

  .banner__inner h2 {
    font-size: 1.7rem;
  }

  .banner__stats {
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* PACKAGES */
  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  /* LOGOS */
  .logos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .logo-card { padding: 20px; }

  /* TESTIMONIALS */
  .testimonial { min-width: 280px; }
  .carousel__btn { display: none; }

  /* FAQ */
  .faq__list { padding: 0 4px; }

  /* FORM */
  .form { padding: 70px 5%; }

  .form__box {
    padding: 28px 20px;
  }

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

  .field.full {
    grid-column: span 1;
  }

  .form__cta {
    grid-column: span 1;
  }

  input,
  select {
    font-size: 16px; /* evita zoom en iOS */
  }

  /* FOOTER */
  .footer__container {
    flex-direction: column;
    gap: 30px;
  }

  .footer__links {
    flex-direction: column;
    gap: 20px;
  }

  .footer__brand { max-width: 100%; }
}

/* =========================
   📱 MOBILE PEQUEÑO (480px ↓)
========================= */
@media (max-width: 480px) {

  .hero h1 { font-size: 1.9rem; }

  .btn {
    padding: 12px;
    font-size: 13px;
  }

  .banner__inner h2 { font-size: 1.5rem; }

  .price { font-size: 26px; }

  .features__title,
  .packages__title,
  .testimonials__title,
  .faq__title,
  .logos__title {
    font-size: 17px;
  }
}

/* =========================
   📱 MOBILE 390px ↓
========================= */
@media (max-width: 390px) {

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero__desc { font-size: 13px; }

  .btn {
    font-size: 13px;
    padding: 12px;
  }

  h3 {
    font-size: 17px;
    line-height: 1.35;
  }

  .feature-card h4 { font-size: 14px; }
  .feature-card p  { font-size: 12px; }

  .testimonial {
    min-width: 240px;
    padding: 18px;
  }

  .price { font-size: 24px; }
  .package-card li { font-size: 13px; }

  .form__box { padding: 24px 16px; }
  .form__desc { font-size: 12px; }

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

/* =========================
   📱 MOBILE 330px ↓
========================= */
@media (max-width: 330px) {

  .hero h1 { font-size: 1.4rem; }
  .hero__desc { font-size: 12px; }

  .btn {
    font-size: 12px;
    padding: 10px;
  }

  h3 { font-size: 15px; }

  .banner__inner h2 { font-size: 1.3rem; }

  input,
  select {
    padding: 10px;
    font-size: 14px;
  }

  .footer__info p { font-size: 12px; }
}
