/* ============================================================
   EMPRESA PAGE — specific styles
   Extends home.css (shared tokens, navbar, footer, utilities)
   ============================================================ */

/* ============================================================
   HERO — inner-page modifier (no title/subtitle)
   ============================================================ */
.hero--inner .hero__content {
    display: none;
}

/* ============================================================
   EMP-INTRO — quiénes somos
   Figma 1585px: Left col x=130 w=424 h=757 | Right starts x=575
   ============================================================ */
.emp-intro {
    position: relative;
    width: 100%;
    min-height: 1078px;
    background: var(--dark);
    display: flex;
    align-items: flex-start;
    padding: 130px 0 60px;
    overflow: hidden;
}

/* LEFT column */
.emp-intro__left {
    position: relative;
    flex-shrink: 0;
    width: 424px;
    margin-left: 130px;
}

.emp-intro__img-main {
    width: 424px;
    height: 757px;
    border-radius: 20px;
    overflow: hidden;
}

.emp-intro__img-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Frosted-glass Hydro Power overlay  (Figma x=403, y=456 from section, w=216, h=224) */
.emp-intro__hydro {
    position: absolute;
    top: 326px;
    /* 456 - 130 (section padding top) */
    right: -80px;
    width: 216px;
    height: 224px;
    border-radius: 20px;
    background: rgba(198, 203, 212, 0.62);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.emp-intro__hydro-logo {
    width: 160px;
    height: 90px;
    object-fit: contain;
}

/* RIGHT column */
.emp-intro__right {
    flex: 1;
    padding-left: 21px;
    max-width: 900px;
}

.emp-intro__title-wrap {
    position: relative;
    max-width: 772px;
    margin-bottom: 48px;
}

.emp-intro__title {
    font-family: var(--font-sans);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.27;
    color: #fff;
}

.emp-intro__title-gradient {
    background: linear-gradient(90deg, #fa9c32, #fe4304);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* i-platform decoration (Figma x=761, y=-19 relative to title, w=135, h=154) */
.emp-intro__deco {
    position: absolute;
    top: -19px;
    right: -50px;
    width: 135px;
    height: 154px;
    pointer-events: none;
}

/* Orange underline decoration (Figma x=419, y=124, w=321, h=22) */
.emp-intro__underline {
    position: absolute;
    bottom: -28px;
    left: 419px;
    width: 321px;
    height: 22px;
    pointer-events: none;
}

/* Bottom: small image + description side by side */
.emp-intro__bottom {
    display: flex;
    gap: 59px;
    align-items: flex-start;
}

.emp-intro__img-sec {
    flex-shrink: 0;
    width: 310px;
    height: 405px;
    border-radius: 20px;
    overflow: hidden;
}

.emp-intro__img-sec-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emp-intro__desc {
    flex: 1;
    padding-top: 8px;
}

.emp-intro__para {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-light);
}

.emp-intro__para--mt {
    margin-top: 28px;
}

/* ============================================================
   EMP-VALUES — valores operativos (3 cards)
   Figma: section bg #141414, inner container rounded-12 w=1407
   ============================================================ */
.emp-values {
    width: 100%;
    background: var(--dark);
    padding: 56px 120px 84px;
    display: flex;
    justify-content: center;
}

.emp-values__container {
    width: 100%;
    max-width: 1407px;
    background: rgba(34, 33, 33, 0.8);
    border: 0.2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 58px 44px 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 58px;
}

.emp-values__header {
    width: 100%;
    max-width: 1167px;
    text-align: center;
}

.emp-values__title {
    font-family: var(--font-sans);
    font-size: 44px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Cards grid */
.emp-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 419px);
    gap: 44px;
    justify-content: center;
}

/* Individual card */
.emp-value-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 419px;
}

/* Photo area */
.emp-value-card__photo {
    width: 100%;
    height: 441px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 0.5px solid rgba(255, 255, 255, 0.8);
    margin-bottom: -25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.emp-value-card__photo--light-border {
    border-color: #ffe8e8;
}

.emp-value-card__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Icon circle overlapping photo/body boundary */
.emp-value-card__icon-wrap {
    position: absolute;
    top: 342px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4.8px 4.8px rgba(0, 0, 0, 0.25);
}

.emp-value-card__icon-wrap--white {
    background: rgba(255, 251, 251, 0.8);
}

.emp-value-card__icon-wrap--salmon {
    background: #fde0d5;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

.emp-value-card__icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

/* Text body */
.emp-value-card__body {
    width: 364px;
    height: 419px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 70px 28px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: inset 0 4px 4px rgba(255, 244, 244, 0.25), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.emp-value-card__body--gray {
    background: linear-gradient(to bottom, rgba(113, 115, 121, 0.8), rgba(44, 45, 48, 0.8));
    border: 0.2px solid #e4e0e0;
}

.emp-value-card__body--orange {
    background: linear-gradient(to bottom, rgba(250, 90, 18, 0.9), rgba(148, 53, 11, 0.9));
    border: 0.5px solid rgba(255, 255, 255, 0.8);
}

.emp-value-card__title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: 0.32px;
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

.emp-value-card__desc {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff4f4;
}

/* ============================================================
   EMP-MAP — cobertura de mercado
   Figma: 1585 × 837px — 2-column grid, right=map, left=content
   ============================================================ */
.emp-map {
    position: relative;
    width: 100%;
    min-height: 837px;
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 54%;
    overflow: hidden;
}

/* Right: map image */
.emp-map__visual {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    min-height: 837px;
}

.emp-map__visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    opacity: 0.4;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.emp-map__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

/* Left: content */
.emp-map__content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    padding: 64px 59px 64px 120px;
    z-index: 2;
}

.emp-map__content-box {
    border: 1px solid rgba(230, 222, 222, 0.5);
    border-radius: 12px;
    padding: 24px 30px;
    width: 100%;
    max-width: 860px;
}

.emp-map__badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.emp-map__badge-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.emp-map__badge-label {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffc703;
}

.emp-map__title {
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0.32px;
    color: #fff;
    margin-bottom: 32px;
}

.emp-map__title-gradient {
    background: linear-gradient(90deg, #fc6817, #fa9b31);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-map__desc {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: #fff;
    max-width: 736px;
    margin-bottom: 48px;
}

.emp-map__tags {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.emp-map__tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #c8c6c5;
    padding: 8.5px 17px;
    border: 1px solid #c4c7c7;
    width: fit-content;
}

.emp-map__tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffc703;
    flex-shrink: 0;
}

/* ============================================================
   EMP-CTA — socio de suministro (Frame 261)
   Figma: 1585 × 685px, dark bg + imgFrame261 at 20% opacity
   ============================================================ */
.emp-cta {
    position: relative;
    width: 100%;
    min-height: 685px;
    background: var(--dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 68px 57px;
}

.emp-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.emp-cta__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    display: block;
}

/* Right decorative circles */
.emp-cta__deco {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 710px;
    height: 710px;
    opacity: 0.5;
    pointer-events: none;
}

.emp-cta__deco-ring {
    position: absolute;
    object-fit: contain;
}

.emp-cta__deco-ring--outer {
    inset: 27.61%;
    width: auto;
    height: auto;
}

.emp-cta__deco-ring--inner {
    inset: 38.65%;
    width: auto;
    height: auto;
}

/* Left content */
.emp-cta__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 44px;
    max-width: 762px;
    padding-left: 37px;
}

.emp-cta__title {
    font-family: var(--font-sans);
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
}

.emp-cta__social {
    display: flex;
}

.emp-cta__social-img {
    height: 35px;
    width: auto;
    display: block;
}

.emp-cta__actions {
    display: flex;
    gap: 43px;
    flex-wrap: wrap;
}

.emp-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 343px;
    height: 64px;
    padding: 15px 17px;
    border-radius: 7px;
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.12;
    color: #fff;
    cursor: pointer;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.4);
    transition: opacity 0.2s ease;
}

.emp-cta__btn:hover {
    opacity: 0.88;
}

.emp-cta__btn--primary {
    background: linear-gradient(to bottom, #ff8d28, #fa5a12);
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 4px 2px rgba(0, 0, 0, 0.4);
}

.emp-cta__btn--secondary {
    background: rgba(61, 64, 75, 0.8);
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 4px 4px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   EMP-INTRO — quiénes somos
   Layout (Figma 1585px):
     Left col: tall image  x=130 w=424 h=757
     Right col: title at top, then (small image | desc)
   ============================================================ */
.emp-intro {
    position: relative;
    width: 100%;
    min-height: 1078px;
    background: var(--darker);
    display: flex;
    align-items: flex-start;
    padding: 130px 0 60px;
    overflow: hidden;
}

/* LEFT column */
.emp-intro__left {
    position: relative;
    flex-shrink: 0;
    width: 424px;
    margin-left: 130px;
}

.emp-intro__img-main {
    width: 424px;
    height: 757px;
    border-radius: 12px;
    overflow: hidden;
}

.emp-intro__img-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logo watermark overlaid on center */
.emp-intro__logo-mark {
    position: absolute;
    bottom: 80px;
    left: -20px;
    opacity: 0.55;
    pointer-events: none;
}

.emp-intro__logo-img {
    width: 160px;
    height: 90px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* RIGHT column */
.emp-intro__right {
    flex: 1;
    padding-left: 21px;
    max-width: 900px;
}

.emp-intro__title {
    font-family: var(--font-inter);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 48px;
    max-width: 772px;
}

/* Bottom: small image + description side by side */
.emp-intro__bottom {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.emp-intro__img-sec {
    flex-shrink: 0;
    width: 310px;
    height: 405px;
    border-radius: 10px;
    overflow: hidden;
}

.emp-intro__img-sec-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emp-intro__desc {
    flex: 1;
    padding-top: 8px;
}

.emp-intro__para {
    font-family: var(--font-inter);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-muted);
}

.emp-intro__para--mt {
    margin-top: 40px;
}

/* ============================================================
   EMP-VALUES — valores operativos (3 cards)
   Figma: 1585 × 1229px, cards x=31/494/957 w=419 h=848
   ============================================================ */
.emp-values {
    width: 100%;
    min-height: 1229px;
    background: var(--dark);
    padding: 93px 89px 80px;
}

.emp-values__header {
    padding-left: 120px;
    margin-bottom: 141px;
}

.emp-values__title {
    font-family: var(--font-inter);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
}

/* Cards grid */
.emp-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 31px;
}

/* Individual card */
.emp-value-card {
    position: relative;
    background: var(--card-dark);
    border-radius: 8px;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

/* Photo area */
.emp-value-card__photo {
    width: 100%;
    height: 441px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.emp-value-card__photo--1 {
    background: linear-gradient(160deg,
            #1a2535 0%,
            #2c3a4a 40%,
            #1e2d3e 70%,
            #111922 100%);
}

.emp-value-card__photo--2 {
    background: linear-gradient(160deg,
            #1c1f28 0%,
            #2a2e3e 40%,
            #21273a 70%,
            #131620 100%);
}

.emp-value-card__photo--3 {
    background: linear-gradient(160deg,
            #211714 0%,
            #3a2218 40%,
            #2c1b14 70%,
            #150d0a 100%);
}

/* Icon circle overlapping photo/body boundary */
.emp-value-card__icon-wrap {
    position: absolute;
    top: calc(441px - 55px);
    /* 386px from top */
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.emp-value-card__icon {
    width: 54px;
    height: 54px;
}

/* Text body */
.emp-value-card__body {
    padding: 79px 56px 48px;
    flex: 1;
    background: var(--card-dark);
    border-radius: 0 0 8px 8px;
}

.emp-value-card__title {
    font-family: var(--font-inter);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.emp-value-card__desc {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ============================================================
   EMP-MAP — cobertura de mercado
   Figma: 1585 × 837px
   Right: map visual  x=792 w=857
   Left:  content     x=0 w=1016 (overlap intentional)
   ============================================================ */
.emp-map {
    position: relative;
    width: 100%;
    min-height: 837px;
    background: var(--darker);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Right: Map visual */
.emp-map__visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 54%;
    /* ~857/1585 */
}

.emp-map__visual-inner {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 60% 50%, #1c2b3a 0%, #0d1620 100%);
    /* Simulated map with CSS grid lines */
    background-image:
        linear-gradient(rgba(180, 160, 100, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 160, 100, 0.06) 1px, transparent 1px),
        radial-gradient(ellipse 70% 60% at 60% 50%, #1c2b3a 0%, #0d1620 100%);
    background-size: 60px 60px, 60px 60px, 100% 100%;
}

/* Route lines drawn in CSS */
.emp-map__visual-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(180, 140, 60, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 140, 60, 0.15) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(ellipse 90% 80% at 55% 55%, black 60%, transparent 100%);
}

/* Fade gradient from left to blend with content */
.emp-map__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            var(--darker) 0%,
            transparent 35%);
}

/* Left: text content */
.emp-map__content {
    position: relative;
    z-index: 2;
    width: 64%;
    padding: 59px 0 59px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.emp-map__badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.emp-map__badge-label {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a0a0a0;
}

.emp-map__title {
    font-family: var(--font-inter);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 520px;
}

.emp-map__title-line {
    width: 320px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
    margin-bottom: 32px;
}

.emp-map__desc {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 512px;
    margin-bottom: 48px;
}

.emp-map__tags {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.emp-map__tag {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    padding: 9px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    width: fit-content;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.03);
}

.emp-map__tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}