/*
Theme Name: 2ffilmes
Author: Sua Produtora
Description: Tema WordPress para produtora audiovisual profissional - fundo preto com detalhes em laranja
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: produtora-av
*/

/* ========== RESET & BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #0a0a0a;
  --color-fg: #f2f2f2;
  --color-primary: #fa6200;
  --color-primary-light: #ff8533;
  --color-card: #121212;
  --color-border: #292929;
  --color-muted: #8c8c8c;
  --glow-orange: 0 0 40px rgba(250, 98, 0, 0.3);
  --glow-orange-strong: 0 0 60px rgba(250, 98, 0, 0.5);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== UTILITIES ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #fa6200, #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  max-width: 800px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fa6200, transparent);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(250, 98, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 30px rgba(250, 98, 0, 0.6);
}

.card {
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background-color: var(--color-card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--glow-orange);
  transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(250, 98, 0, 0.05);
  filter: blur(120px);
  animation: pulseGlow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero__logo {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  border: 1px solid rgba(250, 98, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  max-width: 800px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero__video {
  width: 100%;
  max-width: 768px;
  aspect-ratio: 16/9;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background-color: var(--color-card);
  position: relative;
  margin-bottom: 2.5rem;
}

.hero__video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(250, 98, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.hero__video:hover .play-btn {
  background: rgba(250, 98, 0, 0.3);
}

/* ========== CASES ========== */
.cases {
  padding: 6rem 1rem;
}

.cases__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
}

.cases__subtitle {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 3rem;
}

.cases__grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.cases__video-card {
  aspect-ratio: 16/9;
  position: relative;
}

@media (max-width: 768px) {
  .cases__grid-top,
  .cases__grid-bottom {
    grid-template-columns: 1fr;
  }
}

/* ========== ABOUT ========== */
.about {
  padding: 6rem 1rem;
  text-align: center;
}

.about__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.about__text {
  color: var(--color-muted);
  font-size: 1.125rem;
  max-width: 768px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

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

.about__feature {
  padding: 1.5rem;
  text-align: center;
}

.about__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(250, 98, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}

.about__feature h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.about__feature p {
  color: var(--color-muted);
  font-size: 0.875rem;
}

/* ========== INSTITUTIONAL ========== */
.institutional {
  padding: 6rem 1rem;
  text-align: center;
}

.institutional__logo {
  width: 96px;
  height: 96px;
  border-radius: 0.75rem;
  border: 1px solid rgba(250, 98, 0, 0.3);
  box-shadow: var(--glow-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.institutional__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.institutional__text {
  color: var(--color-muted);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 1rem;
  line-height: 1.8;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 4rem 1rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__social-link {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: all 0.3s;
}

.footer__social-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.footer__copyright {
  color: var(--color-muted);
  font-size: 0.875rem;
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
