/*==================================================
02. RESET
==================================================*/

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  overflow-x: hidden;

  background: linear-gradient(180deg, #f3f1ec 0%, #ece9e3 100%);

  color: var(--texto);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

h1,
h2,
h3 {
  color: var(--verde);
  font-family: var(--font-title);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

p {
  color: var(--texto);
  line-height: 1.75;
}

/*==================================================
03. BASE
==================================================*/

section {
  padding: 80px 20px;
}

main {
  overflow: hidden;
}

/*==================================================
04. LAYOUT
==================================================*/

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/*==================================================
08. BOTONES
==================================================*/

.btn-verde {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  border-radius: 10px;
  background: linear-gradient(145deg, #9ace16, #8abf14);

  color: #003b12;
  font-weight: 700;
  text-decoration: none;

  box-shadow:
    var(--soft-shadow),
    0 0 0 1px rgba(154, 206, 22, 0.15);

  transition: all 0.25s ease;
}

.btn-verde:hover {
  transform: translateY(-3px);

  background: linear-gradient(145deg, #a5d81a, #91c515);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.btn-verde:active {
  transform: translateY(-1px);

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.btn-verde:focus-visible {
  outline: 3px solid rgba(154, 206, 22, 0.35);
  outline-offset: 4px;
}

/*==================================================
09. LISTAS
==================================================*/

.list-check {
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin: 30px 0;
}

.list-check li {
  display: flex;
  gap: 14px;

  color: var(--texto);
}

.list-check i {
  color: var(--verde-claro);
}

/*==================================================
10. LÍNEA INTERNA DE TARJETAS
==================================================*/

.card-title-line {
  width: 25%;
  height: 4px;

  margin-top: -10px;
  margin-bottom: 25px;

  border-radius: 50px;
  background: var(--verde-claro);
}

/*==============================================
ACENTO SUPERIOR PARA TARJETAS
==============================================*/

.card-accent {
  overflow: hidden;
  border-top: 5px solid var(--verde-claro);
}

/*==============================================
ACCESIBILIDAD
==============================================*/

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;

  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.subtitulo {
  color: var(--verde-claro);
  font-weight: bolder;
}