﻿:root {
  --blue: #3BB8D8;
  --blue-bg: #E6F7FC;
  --blue-txt: #0C6E8A;
  --gold: #ffd83c;
  --green: #25d366;
  --dark: #111111;
  --darker: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f9f9f8;
  --gray-100: #f2f2f0;
  --gray-300: #d4d4d0;
  --gray-500: #888880;
  --gray-800: #1e1e1c;
  --text: #1a1a18;
  --text-2: #5a5a56;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--gray-50);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.topbar {
  background: var(--blue);
  padding: 8px 1.25rem;
  min-height: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.topbar-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--darker);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 72vw);
  text-align: center;
  pointer-events: none;
}

.topbar-socials {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.topbar-socials a,
.nav-socials a {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.topbar-socials a {
  background: rgba(255, 255, 255, 0.18);
}

.topbar-socials a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.topbar-socials svg,
.nav-socials svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--darker);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.2vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.dropdown-toggle {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 700;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: var(--gold);
}

.nav-socials {
  display: flex;
  gap: 8px;
}

.nav-socials a {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.nav-socials a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-toggle svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  min-width: 220px;
  background: var(--white);
  border: 0.5px solid var(--gray-300);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 1rem;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: var(--blue-bg);
  color: var(--blue-txt);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.page {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  background: var(--white);
  border-radius: 0 0 24px 24px;
  padding: 3rem 0 2rem;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero p {
  margin: 0;
  max-width: 760px;
  color: var(--text-2);
  font-size: 15px;
}

.hero-copy {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-media,
.image-slot {
  border-radius: var(--radius);
  border: 1px dashed rgba(59, 184, 216, 0.3);
  background:
    linear-gradient(135deg, rgba(59, 184, 216, 0.1), rgba(255, 216, 60, 0.08)),
    var(--gray-100);
  min-height: 240px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}

.hero-media img,
.image-slot img,
.detail-service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section {
  background: var(--white);
  border: 0.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.section.dark {
  background: var(--dark);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.section.dark .section-title,
.section.dark .section-sub,
.section.dark p,
.section.dark li {
  color: var(--white);
}

.section.dark .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section.dark .card h3 {
  color: var(--white);
}

.section.dark .card p {
  color: rgba(255, 255, 255, 0.82);
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-sub {
  margin: 0 0 1.2rem;
  color: var(--text-2);
  font-size: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--gray-50);
  border: 0.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 16px;
  line-height: 1.3;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
}

.check-list,
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.faq-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.1rem;
  position: relative;
  color: var(--text);
}

.check-list li::before,
.faq-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.price {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 216, 60, 0.15);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}

.note {
  font-size: 13px;
  color: var(--text-2);
}

.cta {
  background: var(--dark);
  color: var(--white);
  border-radius: 24px;
  padding: 1.75rem;
  text-align: center;
}

.cta h2 {
  margin: 0 0 0.5rem;
  font-size: 24px;
  text-transform: uppercase;
}

.cta p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.detail-service {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 0.5px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
}

.detail-service__media {
  min-height: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(59, 184, 216, 0.1), rgba(255, 216, 60, 0.08)),
    var(--gray-100);
  border-right: 0.5px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}

.detail-service__body {
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.detail-service__body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.detail-service__body p {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
}

.detail-service__body .small {
  font-size: 13px;
}

.detail-service--complete .detail-service__body {
  padding-top: 1.35rem;
  gap: 0.8rem;
}

.detail-service--complete .detail-service__body h3 {
  font-size: 17px;
  line-height: 1.2;
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 1rem;
  align-items: start;
}

.detail-service {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.detail-service > img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

.detail-service__media {
  display: none;
}

.detail-service__body {
  padding: 0 1rem 1rem;
  gap: 0.45rem;
}

.detail-service__body h3 {
  font-size: 17px;
  line-height: 1.18;
  margin: 0;
}

.detail-service__body p {
  font-size: 12.5px;
  line-height: 1.45;
}

.detail-service__body .service-description {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-2);
}

.detail-service__body .check-list {
  margin: 0;
  padding-left: 1rem;
  font-size: 12px;
  line-height: 1.4;
}

.detail-service__body .check-list li {
  margin: 0.15rem 0;
}

.detail-service__body .price {
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 900px) {
  .service-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
  }
}

footer {
  padding: 2rem 1rem 2.75rem;
  text-align: center;
  color: var(--text-2);
}

.footer-copy {
  font-size: 12px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--blue);
}

@media (max-width: 1100px) {
  .nav-links,
  .nav-socials {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.25rem;
    background: var(--darker);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open .dropdown-menu {
    position: static;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.25rem 0 0 1rem;
    min-width: 0;
  }

  .nav-links.open a,
  .nav-links.open .dropdown-toggle {
    color: var(--white);
  }

  .nav-links.open .dropdown-menu a {
    color: rgba(255, 255, 255, 0.78);
  }
}

@media (max-width: 900px) {
  .hero-copy,
  .grid-2,
  .grid-3,
  .detail-service {
    grid-template-columns: 1fr;
  }

  .detail-service__media {
    border-right: 0;
    border-bottom: 0.5px solid var(--gray-300);
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 8px 1rem;
  }

  .topbar-text {
    font-size: 10px;
    width: calc(100% - 120px);
  }

  .nav {
    padding: 0.45rem 1rem;
  }

  .nav-logo img {
    height: 54px;
  }

  .page {
    width: min(1120px, calc(100% - 1rem));
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section {
    padding: 1.1rem;
  }
}
/* Fix dropdown sobre hero/home */
header,
.header,
.site-header,
.navbar,
.nav-container {
  position: relative;
  z-index: 10000;
}

.hero,
.hero-section,
.hero-slider,
.hero-slide {
  z-index: 1;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  top: 100%;
  z-index: 10001;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}
