* { box-sizing: border-box; }
:root {
  --dark: #151515;
  --dark-2: #202020;
  --dark-3: #0c1116;
  --text: #222222;
  --muted: #666666;
  --light: #f7f8fa;
  --soft: #edf3f8;
  --white: #ffffff;
  --blue: #1e8ee6;
  --blue-dark: #1264a3;
  --green: #19b45b;
  --green-dark: #0d8841;
  --border: rgba(255, 255, 255, 0.14);
  --dark-border: rgba(0, 0, 0, 0.08);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--light);
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(21, 21, 21, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
}
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.menu a {
  color: var(--white);
  padding: 12px 15px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}
.menu a:hover, .menu a:focus { background: rgba(255,255,255,0.12); outline: none; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; }
.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 120px);
}
.hero-content {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(30,142,230,0.42), transparent 36%),
    radial-gradient(circle at 88% 86%, rgba(25,180,91,0.42), transparent 38%),
    linear-gradient(135deg, #101010, #252525);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-content::after {
  content: "";
  position: absolute;
  inset: auto -15% -40% 35%;
  height: 280px;
  background: radial-gradient(circle, rgba(25,180,91,0.26), transparent 70%);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}
h1, h2, h3 { font-family: 'Montserrat', Arial, sans-serif; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.45rem, 5vw, 4.85rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.18rem; }
.hero-text {
  margin: 22px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 670px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; position: relative; z-index: 1; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-family: 'Montserrat', Arial, sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--green), var(--green-dark)); box-shadow: 0 12px 24px rgba(25,180,91,0.28); }
.btn-secondary { color: var(--white); background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 12px 24px rgba(30,142,230,0.24); }
.full { width: 100%; }
.trust-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.trust-row div { padding: 16px; border-radius: 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.trust-row strong { display: block; font-family: 'Montserrat', Arial, sans-serif; font-size: .95rem; }
.trust-row span { display: block; margin-top: 4px; color: rgba(255,255,255,0.72); font-size: .88rem; }
.hero-card {
  min-height: 520px;
  border-radius: 34px;
  padding: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffffff, #dfe5ec);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,142,230,0.22), transparent 70%);
  top: 12%;
  left: 10%;
}
.logo-frame {
  position: relative;
  z-index: 1;
  width: min(420px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,0.28));
}
.logo-frame img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.section { width: min(1180px, calc(100% - 32px)); margin: 90px auto; }
.section-soft, .section-dark {
  width: 100%;
  margin: 90px 0;
  padding: 86px max(16px, calc((100vw - 1180px) / 2));
}
.section-soft { background: var(--soft); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(30,142,230,0.2), transparent 35%),
    radial-gradient(circle at 15% 80%, rgba(25,180,91,0.2), transparent 35%),
    linear-gradient(135deg, #101010, #1c1f23);
}
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.light-heading p:not(.eyebrow) { color: rgba(255,255,255,0.74); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: start; }
.about-text {
  padding: 34px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  border: 1px solid var(--dark-border);
}
.about-text p { line-height: 1.8; color: var(--muted); }
.text-link { display: inline-flex; margin-top: 12px; font-weight: 900; color: var(--green-dark); }
.cards, .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.info-card, .service-card {
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  border: 1px solid var(--dark-border);
}
.info-card span { color: var(--blue); font-family: 'Montserrat', Arial, sans-serif; font-weight: 900; }
.info-card h3, .service-card h3 { margin-top: 12px; }
.info-card p, .service-card p { color: var(--muted); line-height: 1.7; }
.service-card span { font-size: 2rem; }
.project-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 26px 0 32px; }
.filter-btn {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--green); border-color: var(--green); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  transition: transform .2s ease, border .2s ease;
  text-align: left;
  color: var(--white);
  padding: 0;
  font: inherit;
}
.project-card:hover { transform: translateY(-5px); border-color: rgba(25,180,91,0.6); }
.project-cover { height: 245px; position: relative; overflow: hidden; background: #1f2933; }
.project-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project-card:hover .project-cover img { transform: scale(1.06); }
.project-badge { position: absolute; left: 16px; top: 16px; padding: 8px 12px; border-radius: 999px; background: rgba(0,0,0,0.62); color: var(--white); font-weight: 900; font-size: .82rem; }
.video-badge { position: absolute; right: 16px; top: 16px; padding: 8px 12px; border-radius: 999px; background: rgba(25,180,91,0.92); color: var(--white); font-weight: 900; font-size: .82rem; }
.project-body { padding: 22px; }
.project-body p { color: rgba(255,255,255,0.72); line-height: 1.65; margin: 12px 0 0; }
.project-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; color: rgba(255,255,255,0.65); font-size: .9rem; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.contact-card, .contact-form {
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  border: 1px solid var(--dark-border);
}
.contact-card p { color: var(--muted); line-height: 1.6; }
.contact-card a:not(.btn) { color: var(--blue-dark); font-weight: 800; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { font-weight: 900; color: var(--dark); }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d9e0e7;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  background: #fbfcfd;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,142,230,0.12); }
.contact-form small { color: var(--muted); line-height: 1.5; }
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}
.footer a { font-weight: 900; color: var(--green-dark); }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(25,180,91,0.35);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: 22px;
}
.modal.open { display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.76); backdrop-filter: blur(5px); }
.modal-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(780px, calc(100vh - 44px));
  overflow: auto;
  border-radius: 30px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.modal-close {
  position: sticky;
  float: right;
  top: 14px;
  right: 14px;
  z-index: 3;
  margin: 14px 14px -60px 0;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.72);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}
.modal-layout { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 620px; }
.media-viewer { position: relative; background: #0f1419; min-height: 540px; display: grid; place-items: center; overflow: hidden; }
.media-stage { width: 100%; height: 100%; display: grid; place-items: center; }
.media-stage img { width: 100%; height: 100%; object-fit: contain; }
.media-stage iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }
.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #111;
  font-size: 2rem;
  cursor: pointer;
}
.media-nav.prev { left: 16px; }
.media-nav.next { right: 16px; }
.media-counter { position: absolute; left: 16px; bottom: 16px; background: rgba(0,0,0,0.7); color: var(--white); padding: 8px 12px; border-radius: 999px; font-weight: 900; }
.modal-info { padding: 42px 34px 34px; }
.modal-info p { color: var(--muted); line-height: 1.75; }
.modal-meta { font-weight: 800; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 22px 0; }
.thumb {
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #eef2f6;
  min-height: 66px;
  position: relative;
}
.thumb.active { border-color: var(--green); }
.thumb img { width: 100%; height: 66px; object-fit: cover; }
.thumb.video::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0,0,0,0.28);
  font-size: 1.4rem;
}
@media (max-width: 980px) {
  .hero, .about-grid, .contact-grid, .modal-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { min-height: auto; padding: 42px 24px; }
  .cards, .service-grid, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .media-viewer { min-height: 420px; }
  .media-stage iframe { min-height: 420px; }
}
@media (max-width: 720px) {
  .navbar { min-height: 68px; }
  .brand span { font-size: .95rem; }
  .brand img { width: 48px; height: 48px; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px 18px;
    background: rgba(21,21,21,0.98);
    border-bottom: 1px solid var(--border);
  }
  .menu.open { display: flex; }
  .menu a { display: block; }
  .hero { margin-top: 18px; }
  .hero-content { border-radius: 26px; }
  .hero-actions, .footer { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .trust-row, .cards, .service-grid, .project-grid { grid-template-columns: 1fr; }
  .section { margin: 64px auto; }
  .section-soft, .section-dark { margin: 64px 0; padding-top: 64px; padding-bottom: 64px; }
  .modal { padding: 10px; }
  .modal-panel { border-radius: 22px; max-height: calc(100vh - 20px); }
  .modal-layout { min-height: auto; }
  .media-viewer { min-height: 310px; }
  .media-stage iframe { min-height: 310px; }
  .modal-info { padding: 28px 20px 22px; }
  .thumbs { grid-template-columns: repeat(3, 1fr); }
  .floating-whatsapp { left: 16px; right: 16px; bottom: 14px; }
  .footer { padding-bottom: 86px; }
}


.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--light);
}

.status-card {
  width: min(620px, 100%);
  padding: 36px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.status-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.status-card p {
  color: var(--muted);
  line-height: 1.8;
}

.status-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}


/* Ajustes solicitados: texto principal centralizado e sem botão flutuante de WhatsApp */
.hero-content {
  text-align: center;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-text {
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
  max-width: 760px;
  overflow-wrap: break-word;
}

.hero-actions {
  justify-content: center;
}

.trust-row {
  text-align: center;
}

.floating-whatsapp {
  display: none !important;
}

@media (max-width: 680px) {
  .hero-content {
    text-align: center;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .footer {
    padding-bottom: 26px;
  }
}
