﻿
/* ── Intro ────────────────────────────────────────────── */
.gv-st-intro-section {
    padding: 52px 0;
    background: #fff;
}

.gv-st-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.gv-st-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--gv-navy);
    margin: 8px 0 16px;
    line-height: 1.2;
}

    .gv-st-title span {
        color: var(--gv-amber);
    }

.gv-st-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 14px;
}

.gv-st-marcas {
    margin: 20px 0 24px;
}

.gv-st-marca-label {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 8px;
}

.gv-st-marca-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gv-st-pill {
    background: var(--gv-amber-bg);
    color: var(--gv-navy);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(245,158,11,0.25);
}

.gv-st-cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.gv-st-intro-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    height: 420px;
}

    .gv-st-intro-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

.gv-st-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(15,30,51,0.85);
    color: var(--gv-amber);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(245,158,11,0.3);
}

.gv-st-gallery-section {
    padding: 0 0 52px;
    background: #fff;
}

.gv-st-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
    max-height: 452px;
}

.gv-st-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

    .gv-st-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.35s ease;
    }

    .gv-st-gallery-item:hover img {
        transform: scale(1.04);
    }

.gv-st-gallery-item--tall {
    grid-row: 1 / 3;
}

.gv-st-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 14px 14px;
    background: linear-gradient(to top, rgba(15,30,51,0.75) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.25s;
}

.gv-st-gallery-item:hover .gv-st-gallery-overlay {
    opacity: 1;
}

.gv-st-gallery-overlay span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.gv-st-servicios-section {
    padding: 52px 0;
    background: #f8fafc;
}

.gv-st-servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gv-st-svc-card {
    background: #fff;
    border: 0.5px solid var(--gv-border);
    border-radius: 12px;
    padding: 24px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .gv-st-svc-card:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }

.gv-st-svc-icon {
    width: 48px;
    height: 48px;
    background: var(--gv-amber-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.gv-st-svc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gv-navy);
    margin-bottom: 8px;
}

.gv-st-svc-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
}

.gv-st-svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .gv-st-svc-list li {
        font-size: 13px;
        color: #6b7280;
        line-height: 1.5;
        padding-left: 16px;
        position: relative;
    }

        .gv-st-svc-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: var(--gv-amber);
            border-radius: 50%;
        }

.gv-st-svc-card--wide {
    grid-column: 1 / -1;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 992px) {
    .gv-st-servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gv-st-svc-card--wide {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .gv-st-intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gv-st-intro-img {
        height: 260px;
    }

    .gv-st-title {
        font-size: 20px;
    }

    .gv-st-desc {
        font-size: 13px;
    }

    .gv-st-cta-row {
        flex-direction: column;
    }

        .gv-st-cta-row > * {
            width: 100%;
            justify-content: center;
        }
}

@media (max-width: 640px) {
    .gv-st-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 200px 200px;
        max-height: none;
    }

    .gv-st-gallery-item--tall {
        grid-row: auto;
    }

    .gv-st-servicios-grid {
        grid-template-columns: 1fr;
    }

    .gv-st-intro-section,
    .gv-st-servicios-section {
        padding: 28px 0;
    }
}

@media (max-width: 480px) {
    .gv-st-intro-img {
        height: 220px;
    }

    .gv-st-title {
        font-size: 18px;
    }

    .gv-st-marca-pills {
        gap: 4px;
    }

    .gv-st-pill {
        font-size: 10px;
        padding: 3px 8px;
    }
}
