/*
Theme Name: Setas con Sentido
Version: 3.0
Description: Tema editable para ECOMYKES SAS y su marca Setas con Sentido.
*/

:root {
    --ink: #17201b;
    --muted: #5a665f;
    --paper: #f8f4ec;
    --cream: #fffaf0;
    --moss: #426449;
    --leaf: #739b62;
    --clay: #b75f39;
    --gold: #d5a84c;
    --line: rgba(23, 32, 27, 0.12);
    --shadow: 0 24px 70px rgba(32, 45, 38, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 250, 240, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-container {
    width: min(1180px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0;
}

.site-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.menu-list a:hover,
.menu-list .current-menu-item a {
    background: rgba(115, 155, 98, 0.16);
    color: var(--moss);
}

.header-cta,
.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-cta,
.btn--primary {
    background: var(--clay);
    color: white;
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.btn--ghost {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.08);
}

.btn--ghost-dark {
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--cream);
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 20, 17, 0.82), rgba(16, 20, 17, 0.34) 58%, rgba(16, 20, 17, 0.08));
    z-index: -1;
}

.hero__content {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 82px;
    color: white;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 13px;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px, 8vw, 108px);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero__text {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.section {
    padding: 94px 0;
}

.section__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section--intro {
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.intro-copy {
    display: grid;
    gap: 20px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.65;
}

.intro-copy p {
    margin: 0;
}

.section--benefits {
    background: #eef3e6;
}

.benefit-grid,
.format-grid,
.combo-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.benefit-card,
.format-card,
.combo-card,
.team-card {
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.82);
    box-shadow: 0 14px 40px rgba(32, 45, 38, 0.08);
}

.benefit-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--moss);
    color: white;
    font-weight: 900;
}

.benefit-card h3,
.format-card h3,
.combo-card h3,
.team-card h3,
.product-pill h3 {
    margin: 22px 0 12px;
    font-size: 24px;
}

.benefit-card p,
.format-card p,
.combo-card p,
.team-card p,
.product-pill p,
.products-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.products-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 58px;
    align-items: center;
}

.products-media {
    min-height: 620px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.products-media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.products-content > p {
    margin-top: 22px;
    font-size: 18px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.product-pill {
    padding: 20px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--line);
}

.product-pill h3 {
    margin-top: 0;
    font-size: 19px;
}

.section--formats {
    background: var(--cream);
}

.format-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.format-card {
    background: white;
}

.section--combos {
    background: var(--ink);
    color: white;
}

.section--combos .eyebrow,
.section--combos .section-heading h2 {
    color: white;
}

.combo-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.combo-card p {
    color: rgba(255, 255, 255, 0.78);
}

.combo-card strong {
    display: block;
    margin-top: 22px;
    color: var(--gold);
}

.team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card {
    background: white;
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 22px;
}

.team-role {
    color: var(--clay) !important;
    font-weight: 800;
    margin-bottom: 14px !important;
}

.section--contact {
    padding-top: 0;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 46px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e3ead5, #fffaf0);
    box-shadow: var(--shadow);
}

.contact-panel p {
    max-width: 680px;
    color: var(--muted);
    line-height: 1.65;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer {
    padding: 42px 0 28px;
    background: #111713;
    color: white;
}

.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr auto;
    gap: 28px;
    align-items: start;
}

.footer p,
.footer address {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
    line-height: 1.55;
}

.footer address {
    display: grid;
    gap: 4px;
}

.footer a {
    text-decoration: none;
}

.footer-redes {
    display: flex;
    gap: 8px;
}

.footer-redes a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 900;
}

.footer-copy {
    width: min(1180px, calc(100% - 40px));
    margin: 28px auto 0 !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 920px) {
    .header-container {
        min-height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
    }

    .menu-list {
        width: max-content;
    }

    .hero {
        min-height: 760px;
    }

    .intro-grid,
    .products-layout,
    .contact-panel,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .benefit-grid,
    .format-grid,
    .combo-grid,
    .team-grid,
    .product-list {
        grid-template-columns: 1fr;
    }

    .products-media,
    .products-media img {
        min-height: 420px;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .header-container,
    .section__inner,
    .hero__content,
    .footer-container,
    .footer-copy {
        width: min(100% - 28px, 1180px);
    }

    .brand span {
        font-size: 15px;
    }

    .site-logo {
        width: 52px;
        height: 52px;
    }

    .header-cta {
        padding: 11px 16px;
    }

    .hero {
        min-height: 680px;
    }

    .hero__content {
        padding-bottom: 54px;
    }

    .hero__text {
        font-size: 18px;
    }

    .section {
        padding: 68px 0;
    }

    .contact-panel {
        padding: 28px;
    }
}
