:root {
  --primary: #11b8b2;
  --primary-dark: #0f8f8a;
  --secondary: #2ab27b;
  --dark: #101522;
  --dark-soft: #1a2233;
  --text: #1d2433;
  --muted: #667085;
  --white: #ffffff;
  --bg: #f7f9fc;
  --border: #e8edf4;
  --shadow: 0 20px 60px rgba(16, 21, 34, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-dark {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1522, #161f30);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(17, 184, 178, 0.1);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.08);
  color: #8ae8df;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(232, 237, 244, 0.8);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-app {
  color: var(--primary);
  font-size: 1.75rem;
}

.logo-enguera {
  color: var(--dark);
  font-size: 1.45rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.8rem 1.1rem;
  border-radius: 14px;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(16, 21, 34, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(17, 184, 178, 0.2);
}

.btn-light {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  margin-top: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(17, 184, 178, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(42, 178, 123, 0.14), transparent 30%),
    linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}

.hero-bg::before {
  width: 280px;
  height: 280px;
  top: -60px;
  right: -80px;
  background: rgba(17, 184, 178, 0.16);
}

.hero-bg::after {
  width: 260px;
  height: 260px;
  left: -60px;
  bottom: 20px;
  background: rgba(42, 178, 123, 0.14);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  margin: 1.2rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--dark);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-text {
  max-width: 720px;
  font-size: 1.14rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlight-card {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 237, 244, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  width: 100%;
  max-width: 430px;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(145deg, #111827, #182133);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(16, 21, 34, 0.22);
}

.panel-badge {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(17, 184, 178, 0.16);
  color: #92fff7;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-card h2 {
  margin: 1rem 0 1.6rem;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.info-block {
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.info-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-block p {
  margin: 0.2rem 0;
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2,
.project-text h2,
.contact-text h2 {
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.project-text p,
.contact-text p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.project-text p {
  color: rgba(255, 255, 255, 0.78);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  padding: 2rem;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(16, 21, 34, 0.12);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.project-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #91f0cf;
  margin-bottom: 0.9rem;
}

.project-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
}

.project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(17, 184, 178, 0.08), rgba(42, 178, 123, 0.08));
  border: 1px solid var(--border);
}

.contact-card {
  padding: 2rem;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-item + .contact-item {
  margin-top: 1.3rem;
}

.contact-item span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-item p {
  margin: 0.2rem 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: #22c55e;
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(34, 197, 94, 0.28);
}

@media (max-width: 1024px) {
  .hero-grid,
  .project-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section,
  .section-dark {
    padding: 80px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1rem 1.4rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    padding: 1.2rem;
  }

  .panel-card,
  .contact-card,
  .service-card,
  .project-card {
    border-radius: 22px;
  }
}

.offers-hero {
  padding: 90px 0 50px;
  background:
    radial-gradient(circle at top right, rgba(17, 184, 178, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(42, 178, 123, 0.14), transparent 30%),
    linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
}

.offers-hero h1 {
  margin: 1rem 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.offers-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.offer-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.offer-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.offer-card-body {
  padding: 0.8rem;
  text-align: center;
}

.offer-card-body p {
  font-size: 0.95rem;
  font-weight: 600;
}

.map-section {
  padding: 0 0 100px;
}

.map-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .offers-grid {
    grid-template-columns: 1fr;
  }

}