﻿:root {
  --bg-primary: #19392c;
  --accent: #fe6700;
  --beige: #f6f8e3;
  --text-light: #f5f7ef;
  --text-muted: #c9d8cf;
  --card: #1f4535;
  --border: rgba(246, 248, 227, 0.18);
  --radius: 18px;
  --container: 1120px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-light);
  background: var(--bg-primary);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(25, 57, 44, 0.85);
  border-bottom: 1px solid rgba(246, 248, 227, 0.08);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(246, 248, 227, 0.25);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  color: var(--text-light);
  border: 0;
  cursor: pointer;
  padding: 0.42rem 0.62rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.lang-btn.active {
  background: rgba(254, 103, 0, 0.95);
  color: #fff;
}

.main-nav {
  display: none;
  gap: 1.2rem;
}

.main-nav a {
  font-size: 0.95rem;
  color: #e2ebdf;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-small {
  padding: 0.58rem 1rem;
  font-size: 0.9rem;
  background: var(--accent);
  color: #fff;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.35rem;
  box-shadow: 0 12px 30px rgba(254, 103, 0, 0.34);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(254, 103, 0, 0.42);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text-light);
  padding: 0.8rem 1.35rem;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(254, 103, 0, 0.13), transparent 40%),
    radial-gradient(circle at 88% 12%, rgba(246, 248, 227, 0.1), transparent 32%),
    var(--bg-primary);
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.lead {
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.4rem;
  background: linear-gradient(155deg, rgba(246, 248, 227, 0.1), rgba(246, 248, 227, 0.02));
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.25rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-card li {
  margin-bottom: 0.85rem;
  color: #e6f1e9;
}

.services-grid,
.stats-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.stat-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 103, 0, 0.5);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
  background: rgba(254, 103, 0, 0.13);
}

.results {
  background: linear-gradient(180deg, rgba(246, 248, 227, 0.03), transparent);
}

.stat-number {
  font-family: "Manrope", sans-serif;
  color: var(--beige);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.35rem;
}

.stat-label {
  margin: 0;
  color: #d7e5dc;
}

.about {
  background: var(--beige);
}

.about h2,
.about p {
  color: #153528;
}

.about-grid {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-visual img {
  width: clamp(180px, 50vw, 280px);
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.contact-grid {
  display: grid;
  gap: 1.3rem;
}

.contact-form {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(246, 248, 227, 0.05);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  color: #edf2ea;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 248, 227, 0.26);
  border-radius: 12px;
  background: rgba(14, 34, 26, 0.75);
  color: #fff;
  padding: 0.78rem 0.9rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(254, 103, 0, 0.95);
  box-shadow: 0 0 0 4px rgba(254, 103, 0, 0.18);
}

.form-feedback {
  min-height: 1.5rem;
  margin-top: 0.35rem;
  color: var(--beige);
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  padding: 2rem 0 2.8rem;
  border-top: 1px solid rgba(246, 248, 227, 0.1);
}

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

.footer-grid p {
  margin: 0.2rem 0;
  color: #d7e5dc;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(246, 248, 227, 0.4);
  display: grid;
  place-items: center;
  color: var(--beige);
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(254, 103, 0, 0.12);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1001;
  background: var(--accent);
  color: #fff;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

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

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

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

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .services-grid,
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 759px) {
  .btn-small {
    display: none;
  }
}
