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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f9fafb;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617);
  line-height: 1.5;
}

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 0.75rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.nav a {
  color: #cbd5f5;
  transition: color 0.15s ease, transform 0.15s ease;
}

.nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 56px;
  width: 56px;
  border-radius: 999px;
  border: 2px solid #22c55e;
  background: #020617;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  color: #e5e7eb;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 1rem;
}

.logo-sub {
  color: #22c55e;
  font-weight: 600;
  font-size: 0.82rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #84cc16);
  color: #022c12;
  box-shadow: 0 10px 30px rgba(132, 204, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 38px rgba(132, 204, 22, 0.55);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  background: transparent;
}

.btn-outline:hover {
  border-color: #22c55e;
  color: #22c55e;
}

.btn-whatsapp {
  background: #22c55e;
  color: #022c12;
}

.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 3rem 0 2.6rem;
  background:
    radial-gradient(circle at top left, #22c55e33 0, transparent 55%),
    radial-gradient(circle at top right, #3b82f633 0, transparent 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3.2fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-logo {
  margin-bottom: 0.75rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.36);
  background: rgba(15, 23, 42, 0.75);
  margin-bottom: 0.65rem;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 2.9rem);
  margin-bottom: 0.6rem;
}

.hero-text h1 span {
  color: #38bdf8;
}

.hero-text p {
  color: #e5e7eb;
  max-width: 480px;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.3rem 0 0.7rem;
}

.hero-badges {
  font-size: 0.84rem;
  color: #e5e7eb;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 0.6rem;
  align-items: stretch;
}

.hero-gallery-main,
.hero-gallery-side img {
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.hero-gallery-side {
  display: grid;
  gap: 0.6rem;
}

.section {
  padding: 2.8rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617, #020617 60%);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  color: #e5e7eb;
  font-size: 0.95rem;
  max-width: 620px;
}

.section-subtitle strong {
  color: #fbbf24;
}

.grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: linear-gradient(145deg, #020617, #020617);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.9);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 0.95rem 1rem 1rem;
}

.card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.card-body p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.gallery {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.9rem;
}

.gallery img {
  border-radius: 0.9rem;
  height: 180px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.bot {
  background: radial-gradient(circle at top, #0f172a, #020617 60%);
}

.bot-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: 1.8rem;
  align-items: stretch;
}

.bot-text ul.bot-flow {
  margin-top: 0.6rem;
  margin-left: 1rem;
  list-style: none;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.bot-text ul.bot-flow li {
  margin-bottom: 0.25rem;
}

.bot-text .small {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: #9ca3af;
}

.bot-box {
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at top left, #1e293b, #020617 55%);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.95);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bot-header {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.55);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.bot-logo {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #22c55e;
  background: #020617;
}

.bot-title {
  font-weight: 600;
}

.bot-subtitle {
  font-size: 0.78rem;
  color: #cbd5f5;
}

.bot-messages {
  flex: 1;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 260px;
  overflow-y: auto;
}

.msg {
  max-width: 80%;
  padding: 0.45rem 0.65rem;
  border-radius: 0.7rem;
  font-size: 0.86rem;
}

.msg-bot {
  align-self: flex-start;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.msg-user {
  align-self: flex-end;
  background: #22c55e;
  color: #022c12;
}

.bot-input {
  padding: 0.55rem 0.75rem 0.7rem;
  display: flex;
  gap: 0.45rem;
  border-top: 1px solid rgba(148, 163, 184, 0.55);
}

.bot-input input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.45rem 0.75rem;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.bot-input input:focus {
  outline: none;
  border-color: #22c55e;
}

.bot-whatsapp {
  padding: 0.7rem 0.85rem 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.95);
}

.bot-whatsapp p {
  font-size: 0.83rem;
  color: #e5e7eb;
  margin-bottom: 0.55rem;
}

.contact {
  background: radial-gradient(circle at top, #1e293b, #020617 60%);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 1.8rem;
  align-items: center;
}

.contact-highlight {
  margin-top: 0.9rem;
  font-weight: 600;
}

.contact-box {
  border-radius: 1.2rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: linear-gradient(145deg, #020617, #020617);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.95);
}

.contact-box h3 {
  margin-bottom: 0.35rem;
}

.contact-box p {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.7rem;
}

.contact-box .small {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.promo {
  background: radial-gradient(circle at top, #0b1120, #020617 60%);
  border-top: 1px solid rgba(148, 163, 184, 0.45);
}

.promo-inner h2 {
  margin-bottom: 0.4rem;
}

.promo-inner p {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.promo-inner ul {
  list-style: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  padding-left: 0;
}

.promo-inner ul li {
  margin-bottom: 0.2rem;
}

.visit-counter {
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.8);
  font-size: 0.9rem;
}

.visit-count-number {
  font-weight: 800;
  font-size: 1.1rem;
  color: #22c55e;
}

.promo-note {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #9ca3af;
  max-width: 620px;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.3rem 0 1.6rem;
  background: #020617;
}

.footer-inner {
  text-align: center;
}

.footer p {
  font-size: 0.82rem;
  color: #9ca3af;
}

.footer-small {
  margin-top: 0.25rem;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .header-inner {
    justify-content: flex-end;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-gallery {
    grid-template-columns: 1.3fr 1fr;
  }
}

@media (max-width: 760px) {
  .hero-gallery {
    grid-template-columns: 1fr;
  }
  .contact-inner,
  .bot-inner {
    grid-template-columns: 1fr;
  }
}
