/* ===========================
   Criaturo SEO Landing Pages
   Identidade visual: Manrope · Monocromático · Editorial
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --white:       #ffffff;
  --light:       #d4d5d6;   /* cinza claro do site */
  --light-2:     #f0f0f0;   /* cinza muito claro */
  --dark:        #1a1a1a;
  --black:       #000000;
  --text:        #212529;
  --muted:       #535355;
  --border:      #e0e0e0;
  --radius:      4px;
  --radius-pill: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--black);
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.logo img {
  height: 32px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  text-transform: lowercase;
  transition: color .2s;
}

.main-nav a:hover { color: var(--black); }

.btn-nav {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.btn-nav:hover {
  background: var(--dark) !important;
}

/* ── HERO ── */
.hero-lp {
  background: var(--light);
  padding: 96px 0 80px;
}

.breadcrumb {
  margin-bottom: 40px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb li::after {
  content: '/';
  margin-left: 6px;
  opacity: .4;
}

.breadcrumb li:last-child::after { display: none; }

.breadcrumb a {
  color: var(--muted);
  transition: color .2s;
}

.breadcrumb a:hover { color: var(--black); }

.breadcrumb .active { color: var(--black); font-weight: 600; }

.hero-lp h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
  max-width: 820px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  text-transform: lowercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  letter-spacing: 0;
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-transform: lowercase;
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ── CONTENT (white bg) ── */
.section-white {
  background: var(--white);
  padding: 80px 0;
}

.section-light {
  background: var(--light);
  padding: 80px 0;
}

.section-dark {
  background: var(--black);
  padding: 80px 0;
  color: rgba(255,255,255,.75);
}

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-dark .section-label {
  color: rgba(255,255,255,.4);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--black);
}

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

.section-text {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
}

.section-dark .section-text {
  color: rgba(255,255,255,.65);
}

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  padding: 36px 32px;
}

.section-light .benefit-card {
  background: var(--white);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.benefit-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── GALLERY / PORTFOLIO ── */
.gallery-section {
  background: var(--light);
  padding: 80px 0;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background .3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0,0,0,.45);
}

.gallery-caption {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Placeholder gallery item (quando não tem imagem) */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  gap: 8px;
}

.gallery-placeholder i {
  font-size: 28px;
  opacity: .4;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.lightbox-inner img {
  width: 100%;
  border-radius: var(--radius);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ── CONTACT FORM ── */
.contact-section {
  background: var(--white);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-detail span {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-detail span i {
  width: 20px;
  text-align: center;
}

.contact-form {
  background: var(--light-2);
  padding: 40px;
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  transition: border-color .2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
}

.form-group textarea { resize: vertical; min-height: 110px; }

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

.btn-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  font-size: 15px;
  padding: 16px 28px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .main-nav { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-lp { padding: 60px 0 50px; }
  .section-white, .section-light, .section-dark, .gallery-section, .contact-section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 20px; }
}

/* ── WHATSAPP FLUTUANTE ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
}

/* ── GALLERY IMG ── */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
