@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

:root {
  --background: 0 0% 5%;
  --foreground: 0 0% 95%;
  --card: 0 0% 8%;
  --card-foreground: 0 0% 95%;
  --primary: 45 90% 50%;
  --primary-foreground: 0 0% 5%;
  --secondary: 0 0% 14%;
  --secondary-foreground: 0 0% 90%;
  --muted-foreground: 0 0% 60%;
  --border: 0 0% 18%;
  --radius: 0.5rem;
  --gold-light: 45 85% 65%;
  --gold: 45 90% 50%;
  --gold-dark: 45 80% 35%;
}

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

html {
  scroll-behavior: smooth;
}

body.page {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Source Sans 3", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: Oswald, sans-serif;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hidden {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container--narrow {
  max-width: 48rem;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
}

.header-top {
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--secondary) / 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: hsl(var(--muted-foreground));
}

.header-top__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-top__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-top__item--mail {
  display: none;
}

@media (min-width: 640px) {
  .header-top__item--mail {
    display: flex;
  }
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--secondary));
  color: hsl(var(--muted-foreground));
  transition: color 0.15s, border-color 0.15s;
}

.social-btn:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.site-nav {
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background) / 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

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

.site-logo {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

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

.nav-desktop a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground) / 0.8);
  transition: color 0.15s;
}

.nav-desktop a:hover {
  color: hsl(var(--primary));
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-image: linear-gradient(
    135deg,
    hsl(var(--gold-light)),
    hsl(var(--gold)),
    hsl(var(--gold-dark))
  );
  padding: 0.5rem 1.25rem;
  font-family: Oswald, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary-foreground));
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-gold:hover {
  opacity: 0.9;
}

.btn-gold--lg {
  padding: 0.75rem 1.75rem;
}

.nav-desktop__cta {
  display: none;
}

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

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.25rem;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  position: relative;
  min-width: 2.5rem;
  min-height: 2.5rem;
}

.nav-toggle .icon {
  position: absolute;
}

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

.mobile-menu {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mobile-menu a {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground) / 0.8);
}

.mobile-menu a:hover {
  color: hsl(var(--primary));
}

.mobile-menu .btn-gold {
  display: inline-flex;
}

/* ——— Icons ——— */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon--12 {
  width: 12px;
  height: 12px;
}

.icon--16 {
  width: 16px;
  height: 16px;
}

.icon--20 {
  width: 20px;
  height: 20px;
}

.icon--24 {
  width: 24px;
  height: 24px;
}

.icon--28 {
  width: 28px;
  height: 28px;
}

.icon--32 {
  width: 32px;
  height: 32px;
}

.text-primary {
  color: hsl(var(--primary));
}

.text-foreground {
  color: hsl(var(--foreground));
}

/* ——— Hero ——— */
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsl(var(--background)),
    hsl(var(--background) / 0.85),
    hsl(var(--background) / 0.4)
  );
}

.hero__inner {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

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

.hero__content {
  max-width: 42rem;
}

.hero__kicker {
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(var(--primary));
}

.hero__title {
  margin: 0 0 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__text {
  margin: 0 0 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--primary) / 0.4);
  padding: 0.75rem 1.75rem;
  font-family: Oswald, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
  transition: background-color 0.15s;
}

.btn-outline-gold:hover {
  background: hsl(var(--primary) / 0.1);
}

.hero__badges {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

.text-gradient-gold {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    135deg,
    hsl(var(--gold-light)),
    hsl(var(--gold)),
    hsl(var(--gold-dark))
  );
}

.bg-gradient-gold {
  background-image: linear-gradient(
    135deg,
    hsl(var(--gold-light)),
    hsl(var(--gold)),
    hsl(var(--gold-dark))
  );
}

/* ——— Sections ——— */
.section {
  border-top: 1px solid hsl(var(--border));
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.section--muted {
  background: hsl(var(--secondary) / 0.3);
}

.section__head {
  margin-bottom: 4rem;
  text-align: center;
}

.section__kicker {
  margin-bottom: 0.5rem;
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(var(--primary));
}

.section__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

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

.section__lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

/* ——— Services ——— */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .service-row {
    flex-direction: row;
    align-items: center;
  }

  .service-row--reverse {
    flex-direction: row-reverse;
  }
}

.service-row__media,
.service-row__text {
  flex: 1;
  min-width: 0;
}

.service-row__media img {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.25);
}

.service-row__text h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.service-row__text p {
  margin: 0 0 1.5rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--secondary-foreground));
  margin-bottom: 0.5rem;
}

.feature-list li::before {
  content: "";
  margin-top: 0.35rem;
  height: 6px;
  width: 6px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: hsl(var(--primary));
}

/* ——— Norm cards ——— */
.norm-grid {
  display: grid;
  gap: 2rem;
}

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

.norm-card {
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.norm-card:hover {
  box-shadow: 0 0 30px -5px hsl(var(--gold) / 0.3);
}

.norm-card__head {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.norm-card__code {
  font-family: Oswald, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.norm-card__subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.norm-card p:last-child {
  margin: 0;
  line-height: 1.625;
  color: hsl(var(--secondary-foreground));
}

/* ——— About ——— */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.about-copy h2 {
  margin: 0 0 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .about-copy h2 {
    font-size: 2.25rem;
  }
}

.about-copy p {
  margin: 0 0 1rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.about-copy strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.stat-card:hover {
  box-shadow: 0 0 30px -5px hsl(var(--gold) / 0.3);
}

.stat-card .icon {
  display: block;
  margin: 0 auto 0.5rem;
  color: hsl(var(--primary));
}

.stat-card__value {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-card__label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  gap: 3rem;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-line .icon {
  margin-top: 0.25rem;
  color: hsl(var(--primary));
}

.contact-line strong {
  display: block;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.contact-line span,
.contact-line p {
  margin: 0;
  color: hsl(var(--muted-foreground));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 0.75rem 1rem;
  font: inherit;
  color: hsl(var(--foreground));
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-success {
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--primary) / 0.3);
  background: hsl(var(--primary) / 0.1);
  padding: 2rem;
  text-align: center;
}

.form-success__title {
  margin: 0 0 0.5rem;
  font-family: Oswald, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.form-success__text {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ——— FAQ ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 0 1.5rem;
}

.faq-item summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-family: Oswald, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  text-align: left;
  list-style: none;
  color: hsl(var(--foreground));
}

.faq-item summary:hover {
  color: hsl(var(--primary));
  text-decoration: underline;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  padding-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--secondary) / 0.5);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

.footer-brand img {
  margin-bottom: 1rem;
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.footer-brand .social-row {
  margin-top: 1rem;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-col a:hover {
  color: hsl(var(--primary));
}

.footer-legal {
  margin-top: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
}

.footer-legal h4 {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
}

.footer-legal p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.footer-copy {
  margin-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ——— WhatsApp float ——— */
@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.wa-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: #25d366;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
  color: #fff;
  animation: float-y 3s ease-in-out infinite;
}

.wa-float:hover {
  animation: none;
  transform: scale(1.1);
}

/* ——— Motion / reveal ——— */
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-reveal {
  animation: hero-in 0.8s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-chevron {
    transition: none;
  }

  .wa-float {
    animation: none;
  }
}
