/* ==========================================================
   PRAGEO
   style.css
   Versión 0.1
========================================================== */

/* ==========================================================
   VARIABLES
========================================================== */

:root {
  --primary: #355c52;
  --primary-light: #6b8e7f;

  --secondary: #3f5568;

  --accent: #b4dc8c;

  --text: #4b5563;

  --title: #1f2937;

  --background: #f7f8f6;

  --white: #ffffff;

  --border: #e7e9e8;

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.05);

  --radius: 18px;

  --transition: 0.3s;

  --container: 1200px;
}

/* ==========================================================
   RESET
========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;

  background: var(--background);

  color: var(--text);

  line-height: 1.7;

  overflow-x: hidden;
}

/* ==========================================================
   TIPOGRAFÍA
========================================================== */

h1,
h2,
h3 {
  color: var(--title);

  font-weight: 700;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================
   FONDO
========================================================== */

.background {
  position: fixed;

  inset: 0;

  z-index: -1;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(180, 220, 140, 0.18),
      transparent 25%
    ),
    radial-gradient(circle at 90% 80%, rgba(53, 92, 82, 0.08), transparent 30%),
    linear-gradient(180deg, #fafbf9, #f5f6f4);
}

/* ==========================================================
   CONTENEDOR PRINCIPAL
========================================================== */

.landing {
  width: min(92%, var(--container));

  margin: auto;

  min-height: 100vh;
}

/* ==========================================================
   HERO
========================================================== */

.hero {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 100px 0 70px;
}

.logo {
  width: 290px;

  margin-bottom: 35px;
}

.claim {
  text-transform: uppercase;

  letter-spacing: 5px;

  font-size: 0.78rem;

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 35px;
}

.hero h1 {
  max-width: 920px;

  font-size: clamp(2rem, 4vw, 3.7rem);

  line-height: 1.15;

  margin-bottom: 30px;
}

.intro {
  max-width: 760px;

  font-size: 1.18rem;

  color: var(--text);
}

/* ==========================================================
   DIVISIÓN SUAVE
========================================================== */

.hero::after {
  content: "";

  width: 120px;

  height: 2px;

  background: var(--accent);

  margin-top: 60px;
}
/* ==========================================================
   SERVICIOS
========================================================== */

.services {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 28px;

  margin: 20px 0 90px;
}

.service {
  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(12px);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 35px;

  transition: var(--transition);

  position: relative;

  overflow: hidden;
}

.service::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: var(--primary);
}

.service:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);
}

.service h2 {
  font-size: 1.35rem;

  margin-bottom: 14px;
}

.service p {
  color: var(--text);

  font-size: 0.96rem;
}

/* ==========================================================
   CONTACTO
========================================================== */

.contact {
  max-width: 760px;

  margin: 0 auto 90px;

  text-align: center;
}

.contact h3 {
  font-size: 2rem;

  margin-bottom: 18px;
}

.contact p {
  margin-bottom: 35px;
}

.btn-contact {
  display: inline-block;

  background: var(--primary);

  color: white;

  padding: 16px 36px;

  border-radius: 999px;

  font-weight: 700;

  transition: var(--transition);

  margin-bottom: 25px;
}

.btn-contact:hover {
  background: #28463e;

  transform: translateY(-3px);
}

.linkedin {
  display: block;

  color: var(--secondary);

  font-weight: 600;
}

.linkedin:hover {
  color: var(--primary);
}

/* ==========================================================
   FOOTER
========================================================== */

footer {
  border-top: 1px solid var(--border);

  padding: 35px;

  text-align: center;

  color: #7a8088;

  font-size: 0.9rem;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 768px) {
  .hero {
    padding-top: 70px;
  }

  .logo {
    width: 220px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .intro {
    font-size: 1rem;
  }

  .contact h3 {
    font-size: 1.6rem;
  }
}
