/* Estilo global para Peak Boost Media */
:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  color: #fbf4a1;
  background-color: #000;
  --bg: #0a0a0a;
  --panel: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #8f5e25;
  --accent-soft: #fbf4a1;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(143,94,37,0.14), transparent 30%), #000000;
  color: #fbf4a1;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
.button {
  border: none;
  cursor: pointer;
  font: inherit;
}
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: rgba(0,0,0,0.90);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
}
.brand span {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbf4a1;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-nav a {
  color: #fbf4a1;
  transition: color 180ms ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: #8f5e25;
}
.nav-toggle-label {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #fbf4a1;
  border-radius: 999px;
  transition: transform 200ms ease;
}
.nav-toggle-label span {
  position: relative;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  position: absolute;
}
.nav-toggle-label span::before {
  transform: translateY(-6px);
}
.nav-toggle-label span::after {
  transform: translateY(6px);
}
#nav-toggle {
  display: none;
}
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}
.button-primary {
  background: linear-gradient(135deg, #8f5e25, #000000, #8f5e25);
  color: #fff;
}
.button-secondary {
  background: rgba(255,255,255,0.06);
  color: #fbf4a1;
  border: 1px solid rgba(255,255,255,0.12);
}
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(143,94,37,0.22);
}
.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 4rem 0 3rem;
}
.hero-inner {
  display: grid;
  gap: 1.5rem;
}
.hero h1,
.hero h2,
.hero h3,
.section-title {
  margin: 0;
  line-height: 1.05;
}
.hero h1 {
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #8f5e25 0%, #fbf4a1 45%, #8f5e25 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.hero p,
.section-copy {
  max-width: 760px;
  line-height: 1.8;
  color: #dcd2ae;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.services-grid,
.cards-grid,
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card,
.panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 1.8rem;
  backdrop-filter: blur(10px);
}
.card h3,
.panel h3 {
  margin-top: 0;
  color: #fbf4a1;
}
.card p,
.panel p {
  color: #d6c8a3;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.highlight {
  color: #8f5e25;
}
.section {
  padding: 5rem 0;
}
.section-alt {
  background: rgba(255,255,255,0.02);
}
.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  color: #d6c8a3;
  margin-bottom: 2rem;
}
.review-card {
  display: grid;
  gap: 1rem;
}
.review-card p {
  color: #d6c8a3;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #fbf4a1;
}
.review-stars {
  display: inline-flex;
  gap: 0.25rem;
}
.star {
  color: #8f5e25;
}
.faq-list {
  display: grid;
  gap: 1rem;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 1.4rem;
  background: rgba(255,255,255,0.03);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.5fr 1fr;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links a {
  color: #d6c8a3;
}
.footer-copy {
  color: #8f5e25;
}
.hero-visual,
.visual-panel {
  background: linear-gradient(180deg, rgba(143,94,37,0.18), transparent 55%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.hero-visual img {
  max-height: 320px;
}
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat-card {
  text-align: center;
}
.stat-card span {
  display: block;
  margin-top: 0.8rem;
  color: #d6c8a3;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  color: #fbf4a1;
  padding: 1rem 1.2rem;
}
textarea {
  min-height: 180px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: rgba(251,244,161,0.66);
}
.contact-card {
  display: grid;
  gap: 1rem;
}
.contact-card strong {
  color: #fbf4a1;
}
@media (max-width: 900px) {
  .services-grid,
  .cards-grid,
  .review-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    position: relative;
    flex-wrap: wrap;
    padding: 1rem;
  }
  .site-header > .button-primary {
    display: none;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.96);
    padding: 1rem 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
  }
  #nav-toggle:checked + .nav-toggle-label + .site-nav {
    max-height: 300px;
  }
  .nav-toggle-label {
    display: flex;
  }
  .hero {
    padding-top: 3rem;
    min-height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-layout {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .hero-inner {
    padding: 0;
  }
  .section {
    padding: 2.5rem 0;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button-primary,
  .button-secondary {
    width: 100%;
    text-align: center;
  }
}
