:root {
    --green: #5b9b32;
    --green-dark: #164b2b;
    --pink: #ef2758;
    --yellow: #ffc20f;
    --orange: #ff7a1a;
    --navy: #17345d;
    --ink: #1e293b;
    --muted: #6e7a86;
    --cream: #fff8e5;
    --soft: #f7fbff;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(22, 75, 43, 0.16);
    --radius: 32px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Montserrat, Arial, sans-serif;
    color: var(--ink);
    background: #ffffff;
    overflow-x: hidden;
}

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

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

.container-xl {
    width: min(1240px, 92%);
    margin: auto;
}

.center {
    text-align: center;
}

.mt-35 {
    margin-top: 35px;
}

.section {
    position: relative;
    padding: 100px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    color: var(--pink);
    font-size: 0.88rem;
}

.eyebrow.green {
    color: var(--green);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--navy);
    line-height: 1.02;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 6.7rem);
    font-weight: 950;
    letter-spacing: -0.055em;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 4.4rem);
    font-weight: 950;
    letter-spacing: -0.045em;
}

h3 {
    font-size: 1.35rem;
}

p {
    line-height: 1.8;
    color: #64748b;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 15px 28px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.btn:hover {
    transform: translateY(-3px) scale(1.01);
}

.btn-green {
    color: #ffffff;
    background: var(--green);
}

.btn-pink {
    color: #ffffff;
    background: var(--pink);
}

.btn-outline {
    color: var(--green-dark);
    background: #ffffff;
    border: 2px solid rgba(91, 155, 50, 0.22);
}

.btn-sm {
    padding: 11px 20px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

.pill {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    color: #4f8d2c;
    background: #e9f7df;
    font-size: 0.78rem;
    font-weight: 900;
}

/* loader */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    gap: 20px;
    background: #ffffff;
    transition: 0.5s;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.page-loader span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 7px solid #f1f5f9;
    border-top-color: var(--pink);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* menú principal */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(25, 65, 32, 0.12);
    box-shadow: 0 12px 35px rgba(18, 45, 30, 0.12);
    backdrop-filter: blur(18px);
}

.menu-shell {
    width: min(1240px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #245b22;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #13345f;
    background: rgba(255, 194, 15, 0.24);
    transform: translateY(-2px);
}

.brand-logo {
    width: 84px;
    height: 84px;
    margin-top: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #fff8d8 58%, #ffc20f 100%);
    box-shadow:
        0 16px 45px rgba(14, 36, 70, 0.20),
        0 0 0 8px rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.order-btn {
    min-width: 125px;
    height: 44px;
    margin-left: 8px;
    padding: 0 22px !important;
    border-radius: 999px;
    color: #ffffff !important;
    background: linear-gradient(135deg, #4f982f, #2f781f);
    box-shadow: 0 14px 30px rgba(79, 152, 47, 0.32);
}

.order-btn:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff2b68, #ff8a00);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #4f982f, #2f781f);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 4px auto;
    border-radius: 999px;
    background: #ffffff;
}

.mobile-menu {
    display: none;
}

.mobile-menu.show {
    display: grid;
}

/* redes */

.social-rail {
    position: fixed;
    right: 26px;
    top: 42%;
    z-index: 900;
    display: grid;
    gap: 14px;
}

.social-rail a,
.whatsapp-float {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.social-rail a:nth-child(1) {
    background: #0a84c6;
}

.social-rail a:nth-child(2) {
    background: linear-gradient(135deg, #6f42c1, #ef2758, #ffbe0b);
}

.social-rail a:nth-child(3) {
    background: #000000;
}

.whatsapp-float {
    position: fixed;
    right: 26px;
    bottom: 28px;
    z-index: 901;
    background: #2fc469;
    border: 5px solid #ffffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(47, 196, 105, 0.5);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(47, 196, 105, 0);
    }
}

/* inicio */

.hero-home {
    position: relative;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, #fff8d6 0 22%, transparent 45%),
        radial-gradient(circle at 88% 20%, #e9f7df 0 18%, transparent 40%),
        linear-gradient(180deg, #ffffff 0, #fffaf0 100%);
}

.milk-wave {
    position: absolute;
    inset: 0;
    background: url("../img/fondo.png") right bottom / 62% auto no-repeat;
    opacity: 0.25;
    filter: saturate(1.15);
}

.hero-bg-text {
    position: absolute;
    left: -3vw;
    bottom: 4vh;
    font-size: 16vw;
    font-weight: 950;
    letter-spacing: -0.08em;
    color: rgba(239, 39, 88, 0.055);
    line-height: 0.8;
}

.shape {
    position: absolute;
    pointer-events: none;
}

.shape-heart {
    width: 260px;
    height: 230px;
    left: 8%;
    top: 20%;
    border: 15px solid var(--pink);
    border-top: 0;
    border-left: 0;
    border-radius: 60% 40% 45% 60%;
    transform: rotate(45deg);
    opacity: 0.16;
    animation: floaty 6s ease-in-out infinite;
}

.shape-ring {
    right: 10%;
    top: 17%;
    width: 210px;
    height: 210px;
    border: 35px solid rgba(255, 194, 15, 0.23);
    border-radius: 50%;
    animation: floaty 8s ease-in-out infinite reverse;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 60px;
    align-items: center;
}

.hero-copy p {
    width: min(700px, 100%);
    font-size: 1.22rem;
}

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

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
    color: var(--green-dark);
    font-weight: 900;
}

.hero-visual {
    position: relative;
}

.hero-card {
    position: relative;
    width: 70%;
    max-width: 560px;
    padding: 16px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 35px 90px rgba(14, 36, 70, 0.18);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -80px;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 43, 104, 0.22), transparent 32%),
        radial-gradient(circle at 80% 30%, rgba(86, 158, 55, 0.22), transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(255, 194, 15, 0.24), transparent 34%);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 20px;
    z-index: 1;
    border: 2px dashed rgba(239, 39, 88, 0.28);
    border-radius: 28px;
    pointer-events: none;
}

.hero-logoindex,
.hero-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 26px;
}

.hero-card-badge {
    position: absolute;
    left: 36px;
    bottom: 34px;
    z-index: 2;
    padding: 12px 22px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #ff2b68, #ff6b1a);
    box-shadow: 0 15px 35px rgba(255, 43, 104, 0.32);
}

.logoindex-card {
    animation: floatHero 5s ease-in-out infinite;
}

.scroll-cue {
    position: absolute;
    bottom: 18px;
    left: 50%;
    width: 48px;
    height: 72px;
    border: 3px solid var(--green);
    border-radius: 999px;
    display: grid;
    place-items: end center;
    color: var(--green);
    font-size: 2rem;
    transform: translateX(-50%);
    animation: down 1.4s infinite;
}

@keyframes down {
    50% {
        padding-bottom: 15px;
    }
}

@keyframes floaty {
    50% {
        transform: translateY(-18px) rotate(50deg);
    }
}

@keyframes floatHero {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

/* secciones generales */

.section-title {
    max-width: 760px;
}

.section-title.center {
    margin: 0 auto 46px;
}

.section-title p {
    font-size: 1.08rem;
}

/* productos del inicio */

.product-showcase {
    background: #ffffff;
}

.product-showcase::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 140px;
    background: linear-gradient(180deg, #fff8e5, transparent);
}

.product-marquee {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-banner {
    min-height: 290px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
    overflow: hidden;
    position: relative;
    transition: 0.25s;
}

.product-banner:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.product-banner img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.product-banner div {
    padding: 20px;
}

.product-banner strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 1.22rem;
}

.product-banner span {
    color: #64748b;
    line-height: 1.6;
}

/* nosotros */

.about-split {
    background: radial-gradient(circle at 15% 35%, #e9f7df 0 12%, transparent 31%);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-card {
    position: relative;
    min-height: 540px;
}

.green-splash {
    position: absolute;
    inset: 50px 20px;
    background: var(--green);
    clip-path: polygon(13% 20%, 76% 4%, 93% 54%, 67% 91%, 16% 82%, 0 42%);
    opacity: 0.92;
}

.circle-frame {
    position: absolute;
    left: 70px;
    top: 10px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, #fff8d8 0%, #ffffff 68%);
    border: 10px solid rgba(255, 194, 15, 0.35);
    box-shadow: 0 30px 80px rgba(14, 36, 70, 0.18);
    overflow: hidden;
}

.circle-frame img {
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    object-position: center;
}

.play-btn {
    position: absolute;
    left: 30px;
    top: 200px;
    width: 110px;
    height: 85px;
    border-radius: 20px;
    background: var(--pink);
    color: #ffffff;
    font-size: 2.4rem;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 42px rgba(239, 39, 88, 0.28);
}

.split-copy p {
    font-size: 1.15rem;
}

.check-list {
    padding: 0;
    margin: 28px 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin: 16px 0;
    padding-left: 36px;
    color: #597085;
    line-height: 1.65;
    font-weight: 650;
}

.check-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--pink);
    font-weight: 950;
}

.check-list.gold li::before {
    color: var(--yellow);
}

/* estadísticas */

.stats-band {
    position: relative;
    margin: 50px 0;
    padding: 90px 0 140px;
    background: var(--yellow);
}

.paint-edge {
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    background: #ffffff;
}

.paint-edge.top {
    top: -1px;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 85% 60%, 70% 28%, 54% 62%, 39% 32%, 22% 58%, 0 30%);
}

.paint-edge.bottom {
    bottom: -1px;
    clip-path: polygon(0 70%, 16% 34%, 31% 69%, 48% 36%, 66% 73%, 82% 40%, 100% 70%, 100% 100%, 0 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: #ffffff;
}

.stats-grid strong {
    display: block;
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 950;
    font-style: italic;
    line-height: 1;
}

.stats-grid span {
    font-size: 1.15rem;
    font-weight: 900;
}

.service-card {
    width: min(920px, 86%);
    margin: 75px auto -200px;
    padding: 38px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    color: var(--green);
}

.service-card div {
    font-size: 1.15rem;
    border-right: 1px solid #e2e8f0;
}

.service-card div:last-child {
    border-right: 0;
}

/* novedades */

.novedades {
    padding-top: 170px;
}

.novidades-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.news-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.news-card div {
    padding: 22px;
}

.news-card p {
    margin-bottom: 0;
}

/* footer */

.site-footer {
    position: relative;
    margin-top: 40px;
    background: #0f4a32;
    color: #ffffff;
    overflow: hidden;
}

.footer-wave {
    height: 70px;
    background:
        linear-gradient(
            135deg,
            transparent 25%,
            rgba(255, 255, 255, 0.06) 25% 50%,
            transparent 50% 75%,
            rgba(255, 255, 255, 0.06) 75%
        );
    background-size: 70px 70px;
}

.footer-grid {
    padding: 45px 0;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 120px;
    height: 100px;
    object-fit: contain;
}

.site-footer h3,
.site-footer p {
    color: #ffffff;
}

.site-footer a {
    display: block;
    margin: 10px 0;
    color: #e9f7df;
}

.footer-bottom {
    padding: 22px;
    text-align: center;
    color: #cde9d0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* hero interno */

.inner-hero {
    position: relative;
    min-height: 310px;
    display: grid;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(rgba(14, 61, 35, 0.75), rgba(14, 61, 35, 0.75)),
        url("../img/fondo.png") center / cover no-repeat;
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    height: 50px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 100%, 100% 30%, 83% 70%, 65% 25%, 49% 73%, 32% 30%, 14% 72%, 0 35%);
}

.inner-hero h1 {
    color: #ffffff;
}

.inner-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.inner-hero span {
    color: var(--yellow);
    font-weight: 900;
}

/* catálogo */

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}

.filter-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-pills button {
    border: 0;
    border-radius: 999px;
    padding: 12px 17px;
    color: var(--green);
    background: #eef6e9;
    font-weight: 950;
    cursor: pointer;
}

.filter-pills button.active,
.filter-pills button:hover {
    color: #ffffff;
    background: var(--pink);
}

.catalog-toolbar input {
    min-width: 300px;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 999px;
    font-weight: 800;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.catalog-card {
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.09);
    overflow: hidden;
    transition: 0.25s;
}

.catalog-card:hover {
    transform: translateY(-10px);
}

.catalog-img {
    padding: 12px;
    background: #fff8e5;
}

.catalog-img img {
    width: 100%;
    height: 250px;
    border-radius: 24px;
    object-fit: cover;
}

.catalog-body {
    padding: 26px;
}

.catalog-body h2 {
    margin: 14px 0;
    font-size: 1.55rem;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    color: var(--green);
    font-weight: 900;
}

/* marca */

.brand-photo {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffca18, #fff6c7);
    box-shadow: var(--shadow);
}

.brand-photo img {
    height: 500px;
    margin: auto;
    object-fit: contain;
}

.brand-photo i {
    position: absolute;
    right: -40px;
    bottom: 110px;
    width: 150px;
    height: 65px;
    background: var(--yellow);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.values-section {
    background: #f8fbff;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.value-card {
    padding: 34px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.value-card b {
    color: var(--pink);
    font-size: 2rem;
}

/* distribuidores y locales */

.locations-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

.locations-list {
    display: grid;
    gap: 32px;
}

.location-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 55, 99, 0.08);
    box-shadow: 0 26px 70px rgba(20, 55, 99, 0.12);
    padding: 26px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
}

.location-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -85px;
    top: -85px;
    border-radius: 50%;
    background: rgba(255, 194, 15, 0.16);
    z-index: 1;
}

.location-card > * {
    position: relative;
    z-index: 2;
}

.location-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    border-radius: 26px;
    background: #fff6dc;
}

.location-card h2 {
    margin: 10px 0 14px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 950;
}

.location-card p {
    margin: 0 0 13px;
    color: #4b6682;
    line-height: 1.65;
    font-weight: 700;
}

.location-card strong {
    color: var(--navy);
    font-weight: 950;
}

.location-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.map-panel {
    position: relative;
    top: auto;
    width: 100%;
    overflow: hidden;
    border-radius: 34px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid rgba(20, 55, 99, 0.08);
    box-shadow: 0 26px 70px rgba(20, 55, 99, 0.12);
    display: grid;
    grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.map-panel h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.05;
    font-weight: 950;
}

.map-panel p {
    margin: 0;
    color: #4b6682;
    line-height: 1.7;
    font-weight: 700;
}

.ecuador-map {
    grid-column: 2;
    grid-row: 1 / span 4;
    position: relative;
    height: 430px;
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.08)),
        url("../img/fondo.png");
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.ecuador-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(8, 50, 28, 0.78), rgba(79, 152, 47, 0.48)),
        radial-gradient(circle at 30% 25%, rgba(255, 194, 15, 0.26), transparent 30%);
}

.ecuador-map span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 2;
    transform: translate(-50%, -50%);
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #ff2b68, #ff8a00);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.ecuador-map span::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border-radius: 50%;
    background: #ffffff;
}

/* clientes */

.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.client-card {
    padding: 28px;
    border: 1px solid #e8eef5;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.client-card span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #0a78a5;
    background: #e7f7ff;
    font-size: 0.75rem;
    font-weight: 950;
}

.client-card h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* proveedores */

.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.provider-card {
    padding: 20px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.09);
}

.provider-card img {
    height: 210px;
    object-fit: cover;
    border-radius: 24px;
}

/* contacto */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
}

.contact-info,
.contact-form {
    padding: 38px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.contact-line {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 22px 0;
}

.contact-line b {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--green);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
}

.contact-line span {
    display: block;
    margin-top: 5px;
    color: #64748b;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    color: var(--navy);
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    font: inherit;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 800;
}

.alert.ok {
    background: #e9f7df;
    color: #356d1f;
}

.alert.error {
    background: #fee2e2;
    color: #991b1b;
}

.page-news {
    grid-template-columns: repeat(3, 1fr);
}

/* animaciones */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* responsive */

@media (max-width: 1050px) {
    .menu-shell {
        height: 72px;
        grid-template-columns: auto 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .brand-logo {
        justify-self: center;
        width: 76px;
        height: 76px;
    }

    .brand-logo img {
        width: 62px;
        height: 62px;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .mobile-menu {
        width: min(480px, calc(100% - 28px));
        margin: 0 auto 16px auto;
        padding: 16px;
        border-radius: 24px;
        background: #ffffff;
        border: 1px solid rgba(86, 158, 55, 0.16);
        box-shadow: 0 20px 60px rgba(14, 36, 70, 0.16);
    }

    .mobile-menu a {
        padding: 14px 16px;
        border-radius: 16px;
        color: #245b22;
        font-weight: 900;
        text-decoration: none;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
        color: #13345f;
        background: rgba(255, 194, 15, 0.22);
    }

    .mobile-order-btn {
        margin-top: 8px;
        text-align: center;
        color: #ffffff !important;
        background: linear-gradient(135deg, #ff2b68, #ff8a00);
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .novidades-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        width: 100%;
    }

    .hero-card img,
    .hero-logoindex {
        height: 360px;
    }

    .product-marquee,
    .catalog-grid,
    .client-grid,
    .provider-grid,
    .page-news {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .service-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        margin-bottom: -180px;
    }

    .social-rail {
        display: none;
    }

    .location-card {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .map-panel {
        grid-template-columns: 1fr;
    }

    .map-panel > .pill,
    .map-panel > h2,
    .map-panel > p,
    .ecuador-map {
        grid-column: 1;
        grid-row: auto;
    }

    .ecuador-map {
        height: 380px;
        margin-top: 12px;
    }
}

@media (max-width: 720px) {
    h1 {
        font-size: 3rem;
    }

    .section {
        padding: 70px 0;
    }

    .hero-home {
        padding: 70px 0;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card {
        max-width: 100%;
        border-radius: 26px;
    }

    .hero-logoindex,
    .hero-card img {
        height: 260px;
    }

    .hero-card-badge {
        left: 24px;
        bottom: 24px;
        font-size: 13px;
    }

    .product-marquee,
    .catalog-grid,
    .client-grid,
    .provider-grid,
    .news-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-toolbar input {
        min-width: 0;
        width: 100%;
    }

    .stats-grid,
    .service-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card div {
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .location-card,
    .provider-card {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 20px;
    }

    .location-card img {
        height: 220px;
    }

    .map-panel {
        padding: 22px;
    }

    .ecuador-map {
        height: 320px;
    }

    .circle-frame {
        left: 20px;
        width: 330px;
        height: 330px;
    }

    .circle-frame img {
        padding: 12px;
    }

    .video-card {
        min-height: 410px;
    }

    .brand-photo img {
        height: 350px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }
}