/*
Theme Name: Locaeventus
Theme URI: https://locaeventus.com.br
Author: Locaeventus
Description: Tema para locação de painel LED, som e luz para eventos.
Version: 1.0.0
License: Private
Text Domain: locaeventus
*/

/* ============================================================
   CSS VARIABLES — Design System
   ============================================================ */
:root {
  --radius: 0.875rem;
  --background: oklch(0.16 0.04 265);
  --foreground: oklch(0.98 0.005 250);
  --brand-blue: oklch(0.55 0.22 270);
  --brand-purple: oklch(0.55 0.27 320);
  --brand-magenta: oklch(0.62 0.27 0);
  --brand-orange: oklch(0.72 0.20 45);
  --gradient-brand: linear-gradient(90deg,
    oklch(0.55 0.22 270),
    oklch(0.55 0.27 320),
    oklch(0.62 0.27 0),
    oklch(0.72 0.20 45)
  );
  --gradient-brand-soft: linear-gradient(135deg,
    oklch(0.55 0.22 270 / 0.18),
    oklch(0.62 0.27 0 / 0.14),
    oklch(0.72 0.20 45 / 0.18)
  );
  --whatsapp: oklch(0.68 0.18 150);
  --whatsapp-foreground: oklch(0.99 0 0);
  --shadow-glow: 0 20px 60px -20px oklch(0.55 0.27 320 / 0.55);
  --shadow-elegant: 0 10px 40px -10px oklch(0.08 0.05 265 / 0.6);
  --card: oklch(0.22 0.045 265);
  --card-foreground: oklch(0.98 0.005 250);
  --primary: oklch(0.62 0.27 0);
  --primary-foreground: oklch(0.99 0 0);
  --muted: oklch(0.26 0.05 265);
  --muted-foreground: oklch(0.72 0.03 255);
  --border: oklch(1 0 0 / 0.08);
  --input: oklch(1 0 0 / 0.12);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container-md {
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.text-gradient-brand {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-gradient-brand { background: var(--gradient-brand); }
.bg-gradient-brand-soft { background: var(--gradient-brand-soft); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }

.text-muted { color: var(--muted-foreground); }
.text-orange { color: var(--brand-orange); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.68 0.18 150 / 0.55); }
  50% { box-shadow: 0 0 0 14px oklch(0.68 0.18 150 / 0); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

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

.header-logo img {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.5rem;
  object-fit: cover;
}

.header-logo span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: none;
}

@media (min-width: 640px) {
  .header-logo span { display: block; }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

.header-nav a:hover { color: var(--foreground); transition: color 0.2s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--whatsapp);
  color: var(--whatsapp-foreground);
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.btn-whatsapp:hover { transform: scale(1.03); }
.btn-whatsapp:active { transform: scale(1); }

.btn-whatsapp.btn-lg {
  height: 3.5rem;
  padding-inline: 2rem;
  font-size: 1rem;
}

.btn-whatsapp.btn-md {
  height: 2.75rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
}

.btn-whatsapp.btn-full { width: 100%; }

.btn-outline {
  display: inline-flex;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding-inline: 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: background-color 0.2s;
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

.hero-glows {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-glow-1 {
  position: absolute;
  top: -8rem; left: -5rem;
  height: 30rem; width: 30rem;
  border-radius: 9999px;
  background: oklch(0.55 0.27 320 / 0.25);
  filter: blur(80px);
}

.hero-glow-2 {
  position: absolute;
  top: 2.5rem; right: 0;
  height: 26rem; width: 26rem;
  border-radius: 9999px;
  background: oklch(0.72 0.20 45 / 0.20);
  filter: blur(80px);
}

.hero-glow-3 {
  position: absolute;
  bottom: 0; left: 33%;
  height: 22rem; width: 22rem;
  border-radius: 9999px;
  background: oklch(0.55 0.22 270 / 0.20);
  filter: blur(80px);
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: oklch(0.22 0.045 265 / 0.5);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  backdrop-filter: blur(8px);
}

.hero-badge svg { color: var(--brand-orange); }

.hero-title {
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-desc {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-images {
  position: relative;
}

.hero-images-glow {
  position: absolute;
  inset: -1.5rem;
  background: var(--gradient-brand-soft);
  border-radius: 1.5rem;
  filter: blur(2rem);
}

.hero-images-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-images-grid .img-main {
  grid-column: span 2;
  height: 16rem;
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

.hero-images-grid .img-sub {
  height: 10rem;
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (min-width: 768px) { .section-title { font-size: 3rem; } }

.section-desc {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

/* ============================================================
   CARD BASE
   ============================================================ */
.card {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: oklch(0.62 0.27 0 / 0.5);
  box-shadow: var(--shadow-elegant);
}

/* ============================================================
   EVENTOS SECTION
   ============================================================ */
.eventos-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .eventos-grid { grid-template-columns: repeat(3, 1fr); }
}

.evento-card {
  padding: 1.75rem;
}

.evento-card-icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--gradient-brand-soft);
  color: var(--brand-orange);
}

.evento-card h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.evento-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================================
   EQUIPAMENTOS SECTION
   ============================================================ */
.equipamentos-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .equipamentos-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.equipamentos-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .equipamentos-grid { grid-template-columns: 1fr 1fr; }
}

/* Featured LED Card */
.led-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
}

@media (min-width: 1024px) {
  .led-card { grid-row: span 2; }
}

.led-card img {
  height: 18rem;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .led-card img { height: 24rem; }
}

.led-card-body { padding: 1.75rem; }

.led-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
}

.led-card h3 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.led-card > .led-card-body > p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

.led-features {
  margin-top: 1.25rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.led-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.led-features li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--brand-orange);
}

.led-features li span { color: var(--muted-foreground); }

/* Audio Cards */
.audio-card {
  display: flex;
  gap: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.audio-card:hover { border-color: oklch(0.62 0.27 0 / 0.5); }

.audio-card img {
  height: 7rem;
  width: 7rem;
  flex-shrink: 0;
  border-radius: 1rem;
  object-fit: cover;
}

.audio-card-info { flex: 1; }

.audio-card-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
}

.audio-card h3 {
  margin-top: 0.25rem;
  font-weight: 600;
}

.audio-card .model {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.audio-card .desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================================
   KIT SECTION
   ============================================================ */
.kit-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
}

@media (min-width: 768px) { .kit-card { padding: 3rem; } }

.kit-card-glow {
  pointer-events: none;
  position: absolute;
  top: -6rem; right: -6rem;
  height: 18rem; width: 18rem;
  border-radius: 9999px;
  background: var(--gradient-brand);
  opacity: 0.2;
  filter: blur(80px);
}

.kit-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .kit-grid { grid-template-columns: 1fr 1fr; }
}

.kit-badge {
  display: inline-block;
  border-radius: 9999px;
  background: var(--gradient-brand);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.kit-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) { .kit-title { font-size: 2.25rem; } }

.kit-items {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.kit-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.kit-items li svg { flex-shrink: 0; margin-top: 0.125rem; }

/* Pricing box */
.kit-pricing {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: oklch(0.16 0.04 265 / 0.4);
  padding: 1.5rem;
}

.kit-pricing-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.kit-price {
  margin-top: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) { .kit-price { font-size: 3rem; } }

.kit-pricing-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.kit-perks {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.kit-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.kit-perks li svg { flex-shrink: 0; margin-top: 0.125rem; color: var(--brand-orange); }

/* Diferenciais grid */
.diferenciais-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .diferenciais-grid { grid-template-columns: repeat(3, 1fr); }
}

.diferencial-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
}

.diferencial-card svg { color: var(--brand-orange); }

.diferencial-card h3 {
  margin-top: 0.75rem;
  font-weight: 600;
}

.diferencial-card p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================================
   CONTATO SECTION
   ============================================================ */
.contato-section {
  border-top: 1px solid var(--border);
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}

.contato-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) { .contato-title { font-size: 3rem; } }

.contato-desc {
  margin-inline: auto;
  margin-top: 1.25rem;
  max-width: 42rem;
  color: var(--muted-foreground);
}

.contato-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 2rem;
  width: 2rem;
  border-radius: 0.375rem;
  object-fit: cover;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover { color: var(--foreground); transition: color 0.2s; }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--whatsapp);
  color: var(--whatsapp-foreground);
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 2s ease-in-out infinite;
  transition: transform 0.2s;
  cursor: pointer;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ============================================================
   WORDPRESS — remove extra padding/margin from body
   ============================================================ */
.admin-bar .site-header { top: 32px; }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
