*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   RESET CRÍTICO PARA MOBILE
   =============================== */

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

a:visited {
    color: inherit;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
}

/* Evita estilos automáticos iOS */
input,
textarea,
select {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--blanco);
    color: var(--negro);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.section {
    padding: 100px 0;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: var(--font-primary);
    font-weight: normal;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
}

p {
    color: var(--gris-oscuro);
}