﻿/*
Theme Name: Meu Site 2
Theme URI: https://example.com/
Author: Loriano Reis
Description: Site pessoal de desenvolvimento web para Loriano Reis.
Version: 2.0.0
Text Domain: meu-site2
*/

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

:root {
  --bg: #0a0a0b;
  --panel: #121214;
  --panel-2: #16161a;
  --ink: #f5f5f5;
  --muted: #b0b3b8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #e10600;
  --accent-2: #ff3b30;
  --glow: 0 0 30px rgba(225, 6, 0, 0.35);
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% 0%, rgba(225, 6, 0, 0.15), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(255, 59, 48, 0.12), transparent 60%),
    linear-gradient(180deg, #050506 0%, #0a0a0b 40%, #0d0d10 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 24px;
  top: 24px;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 6, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
  color: var(--muted);
  flex-wrap: wrap;
}

.nav-links-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.nav-links-arrow {
  transition: transform 0.2s ease;
}

.nav-links-toggle[aria-expanded="true"] .nav-links-arrow {
  transform: rotate(180deg);
}

.nav-links-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle-bar {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 6, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 8;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-weight: 700;
}

.cta.primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow);
}

.cta.ghost {
  background: transparent;
  color: var(--ink);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.hero {
  padding: 110px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 6vw, 84px);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  animation: float 6s ease-in-out infinite;
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.hero-media {
  position: relative;
}

.hero-media-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(5, 5, 6, 0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--muted);
}

.hero-card span {
  color: var(--ink);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section {
  padding: 80px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Oswald", sans-serif;
}

.section-title p {
  color: var(--muted);
  max-width: 520px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(225, 6, 0, 0.4);
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.1);
  border: 1px solid rgba(225, 6, 0, 0.3);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--panel-2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
}

.timeline-item strong {
  display: block;
  color: var(--accent-2);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
}

.highlight {
  background: linear-gradient(120deg, rgba(225, 6, 0, 0.18) 0%, rgba(255, 59, 48, 0.05) 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(225, 6, 0, 0.25);
}

.cta-band {
  background: linear-gradient(120deg, #0b0b0c 0%, #151517 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(225, 6, 0, 0.25);
}

.cta-band .cta {
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label span {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.contact-form .card {
  background: #0f0f12;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0a0a0b;
  color: var(--ink);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7c7f85;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(225, 6, 0, 0.5);
  box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.2);
}

.briefing-form {
  display: grid;
  gap: 16px;
}

.briefing-form label span {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.briefing-form .card {
  background: #0f0f12;
}

.briefing-form input,
.briefing-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0a0a0b;
  color: var(--ink);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
}

.briefing-form input::placeholder,
.briefing-form textarea::placeholder {
  color: #7c7f85;
}

.briefing-form input:focus,
.briefing-form textarea:focus {
  outline: none;
  border-color: rgba(225, 6, 0, 0.5);
  box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.2);
}

.briefing-status {
  color: var(--muted);
  font-weight: 600;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 6, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 24px;
}

.lightbox-image {
  max-width: min(1200px, 92vw);
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}


.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #101014;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.site-footer {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--muted);
}

.footer-social a {
  color: inherit;
  border-bottom: 1px solid transparent;
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(225, 6, 0, 0.6);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.icon {
  width: 22px;
  height: 22px;
  color: var(--accent-2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.photo-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #0f0f12;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo.wide img {
  aspect-ratio: 16 / 10;
}

.photo-caption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 0, 0.35);
  background: rgba(225, 6, 0, 0.08);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0f0f12;
}

.stat strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  color: var(--accent-2);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.hero-animate {
  animation: reveal 0.8s ease both;
}

.hero-animate.delay {
  animation-delay: 0.2s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: #0f0f12;
    border: 1px solid var(--line);
    border-radius: 16px;
    z-index: 9;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links-toggle {
    display: inline-flex;
  }

  .nav-links-list {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links-list.is-open {
    display: flex;
  }

  .hero-grid > div:first-child {
    order: 1;
  }

  .hero-card {
    order: 2;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}
