/* ============================================
   AVITERRA — tokens
   ============================================ */
:root {
    --green-deep:  #1f594d;
    --green-mid:   #87b647;
    --green-pale:  #dfe9cd;
    --soil:        #9d7247;
    --crio-blue:   #0032a0;
    --crio-yellow: #fec524;
    --crio-yellow-light: #ffe92f;
    --ink:         #1c2418;
    --paper:       #ffffff;
    --sage-tint:   #f2f5ec;

    --font-display: "Big Shoulders Display", sans-serif;
    --font-body:    "Work Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

.divider {
    height: 10px;
    background-image: linear-gradient(to top, var(--crio-yellow), var(--crio-yellow-light));
    box-shadow: 0 8px 7px 0 rgba(0, 0, 0, 0.11);
}

.intro__fact dt { color: var(--crio-blue); }

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

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: clamp(28px, 3.4vw, 44px);
    color: var(--green-deep);
    margin: 0 0 32px;
    letter-spacing: 0.2px;
}

.section-title--light { color: var(--paper); }

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
    background: var(--green-deep);
    color: var(--paper);
}
.btn--primary:hover { background: var(--green-mid); }

.btn--outline {
    background: transparent;
    color: var(--paper);
    border: 2px solid var(--paper);
}
.btn--outline:hover {
    background: var(--paper);
    color: var(--green-deep);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: var(--sage-tint);
    padding: 96px 24px 80px;
    overflow: hidden;
}

.hero__logo {
    width: 480px;
    mix-blend-mode: multiply;
}
.hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero__copy { flex: 1 1 480px; max-width: 560px; }

.hero__eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--crio-blue);
    margin: 0 0 18px;
}

.hero__wordmark { margin-bottom: 28px; }

.hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
    color: var(--green-deep);
    margin: 0 0 20px;
}

.hero__text {
    font-size: 16px;
    max-width: 46ch;
    color: var(--ink);
    margin: 0 0 32px;
}

.hero__stat {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 32px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 56px;
    color: var(--soil);
    line-height: 1;
}
.hero__stat-number small { font-size: 26px; }

.hero__stat-label {
    font-size: 14px;
    max-width: 16ch;
    color: var(--ink);
}

.hero__media { flex: 1 1 380px; display: flex; justify-content: flex-start; }

.hero__blob {
    width: min(560px, 48vw);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 42% 58% 61% 39% / 45% 40% 60% 55%;
    box-shadow: 0 30px 60px -20px rgba(47, 93, 52, 0.35);
    animation: blob-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
}
.hero__blob img {
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: 50%;
}

.intro__fact dt { color: var(--crio-blue); }

.divider {
    height: 10px;
    background-image: linear-gradient(to top, var(--crio-yellow), var(--crio-yellow-light));
    box-shadow: 0 8px 7px 0 rgba(0, 0, 0, 0.11);
}



@keyframes blob-in {
    from { opacity: 0; transform: scale(0.92) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 860px) {
    .hero__inner { flex-direction: column; text-align: left; }
    .hero__media { order: -1; }
}

/* ============================================
   INTRO / DESCRIPCIÓN
   ============================================ */
.intro { padding: 96px 24px; }

.intro__inner { max-width: 760px; margin: 0 auto; }

.intro__text {
    font-size: 17px;
    max-width: 68ch;
    margin: 0 0 44px;
}

.intro__facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding-top: 28px;
    border-top: 1px solid #e2e2dc;
}

.intro__fact dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-mid);
    margin-bottom: 6px;
}
.intro__fact dd {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
}

@media (max-width: 640px) {
    .intro__facts { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}

/* ============================================
   BENEFICIOS
   ============================================ */
.beneficios { background: var(--green-deep); }

.beneficios__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.beneficios__media { flex: 1 1 42%; min-height: 460px; }
.beneficios__media img { width: 100%; height: 100%; object-fit: cover; }

.beneficios__copy {
    flex: 1 1 58%;
    padding: 80px 56px;
    color: var(--paper);
}

.beneficios__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
    max-width: 52ch;
}

.beneficios__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15.5px;
    color: #eef3e6;
}

.leaf {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    background: var(--green-mid);
    border-radius: 0 60% 0 60%;
}

@media (max-width: 860px) {
    .beneficios__inner { flex-direction: column; }
    .beneficios__media { min-height: 260px; }
    .beneficios__copy { padding: 56px 24px; }
}

/* ============================================
   Carousel / BENEFICIOS
   ============================================ */

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.carousel__track {
    display: flex;
    transition: transform .6s ease;
}
.carousel__slide {
    flex: 0 0 100%;
}
.carousel__slide img {
    display: block;
    width: 100%;
    height: auto;
}
.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
}
.carousel__arrow:hover {
    background: rgba(0, 0, 0, .65);
}
.carousel__arrow--prev { left: 16px; }
.carousel__arrow--next { right: 16px; }

/* ============================================
   PRESENTACIONES
   ============================================ */
.presentaciones { padding: 96px 24px; background: var(--sage-tint); }

.presentaciones__inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.presentaciones .section-title { text-align: left; }

.presentaciones__row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.peso-badge {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: var(--paper);
    border: 3px solid var(--green-mid);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px -14px rgba(47, 93, 52, 0.4);
}

.peso-badge__num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 40px;
    color: var(--green-deep);
    line-height: 1;
}
.peso-badge__unit {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--soil);
    margin-top: 4px;
}

/* ============================================
   FICHA TÉCNICA
   ============================================ */
.ficha { padding: 96px 24px; }

.ficha__inner { max-width: 900px; margin: 0 auto; }

.ficha__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    border: 1px solid #e2e2dc;
    border-radius: 4px;
    padding: 40px;
}

.ficha__col-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green-deep);
    margin: 0 0 18px;
}

.ficha__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}

.ficha__table tr { border-bottom: 1px solid #ecece5; }
.ficha__table tr:last-child { border-bottom: none; }

.ficha__table th {
    text-align: left;
    font-weight: 400;
    color: var(--ink);
    padding: 9px 0;
}

.ficha__table td {
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--green-deep);
    padding: 9px 0;
}

.ficha__ref {
    margin: 24px 0 0;
    font-size: 12.5px;
    color: #8a8a82;
}

.ficha__col {
    display: flex;
    flex-direction: column;
}
.ficha__col-media {
    flex: 1 1 auto;
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}
.ficha__col-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 640px) {
    .ficha__grid { grid-template-columns: 1fr; padding: 28px 20px; gap: 36px; }
}

/* ============================================
   SEGURIDAD / ALMACENAMIENTO
   ============================================ */
.seguridad { background: var(--paper); padding: 0 24px 96px; }

.seguridad__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e2e2dc;
    border: 1px solid #e2e2dc;
}

.seguridad__col {
    background: var(--paper);
    padding: 40px;
    border-left: 3px solid var(--soil);
}

.seguridad__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin: 0 0 18px;
}

.seguridad__col p {
    font-size: 14px;
    color: #4a4a44;
    margin: 0 0 14px;
}
.seguridad__col p:last-child { margin-bottom: 0; }
.seguridad__col strong { color: var(--ink); }

@media (max-width: 768px) {
    .seguridad__inner { grid-template-columns: 1fr; }
    .seguridad__col { border-left: none; border-top: 3px solid var(--soil); }
}

/* ============================================
   CIERRE / CTA
   ============================================ */
.cierre {
    background: var(--green-deep);
    padding: 100px 24px;
    text-align: center;
}

.cierre__inner { max-width: 620px; margin: 0 auto; }

.cierre__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: clamp(26px, 3vw, 36px);
    color: var(--paper);
    margin: 0 0 32px;
    line-height: 1.2;
}

.cierre__credit {
    margin: 28px 0 0;
    font-size: 13px;
    color: #cfe0c5;
}
