/* =============================================
   About / Nosotros Section – Vortice 2027
   Redesigned to match reference layout
   ============================================= */

/* Force Fira Sans on everything */
.vortice-about,
.vortice-about h1,
.vortice-about h2,
.vortice-about h3,
.vortice-about h4,
.vortice-about p,
.vortice-about a,
.vortice-about span {
    font-family: 'Fira Sans', sans-serif !important;
}

/* ---- Section ---- */
.vortice-about {
    position: relative;
    padding: 96px 0 128px;
    background: #ffffff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background decoration (blurred circle top-right) */
.vortice-about-bg-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: #f8fafc;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    transform: translate(50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* ---- Container ---- */
.vortice-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .vortice-about-container {
        padding: 0 48px;
    }
}

/* ---- Two-column layout ---- */
.vortice-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .vortice-about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 96px;
    }
}

/* ---- Left Column: Image ---- */
.vortice-about-image-col {
    position: relative;
}

/* Green glow behind image */
.vortice-about-image-col::before {
    content: '';
    position: absolute;
    top: -48px;
    left: -48px;
    width: 256px;
    height: 256px;
    background: rgba(49, 190, 103, 0.10);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.vortice-about-image-wrap {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.7s ease;
}

.vortice-about-image-wrap:hover {
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.1);
}

.vortice-about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.vortice-about-image-col:hover .vortice-about-image-wrap img {
    transform: scale(1.05);
}

/* Gradient overlay on image (bottom) */
.vortice-about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.80), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ---- Top-right Vortice logo badge on image ---- */
.vortice-about-image-logobadge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.90);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.50);
    transition: transform 0.3s ease;
    line-height: 0;
}

.vortice-about-image-logobadge:hover {
    transform: scale(1.05);
}

.vortice-about-image-logobadge img {
    height: 32px;
    width: auto;
    mix-blend-mode: multiply;
    object-fit: contain;
}

/* ---- Bottom-left location text on image ---- */
.vortice-about-image-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vortice-about-image-badge-label {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
}

.vortice-about-image-badge-value {
    font-size: 24px !important;
    font-weight: 300 !important;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* ---- Feature badges – 2-col with icon + title + desc ---- */
.vortice-about-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 24px;
    margin-top: 40px;
}

@media (min-width: 480px) {
    .vortice-about-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vortice-about-badge {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vortice-about-badge-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00963E;
    font-size: 22px;
}

.vortice-about-badge-content {
    display: flex;
    flex-direction: column;
}

.vortice-about-badge-label {
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.5 !important;
}

.vortice-about-badge-desc {
    font-size: 18px !important;
    font-weight: 300 !important;
    color: #64748b;
    line-height: 1.6 !important;
    margin: 0;
}

/* ---- Right Column: Text ---- */
.vortice-about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
}

@media (min-width: 1024px) {
    .vortice-about-text-col {
        padding-top: 0;
    }
}

/* Section label */
.vortice-about-label {
    display: inline-block;
    margin-bottom: 16px;
}

.vortice-about-label-text {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00963E;
}

/* Hide the label-line since reference doesn't use it */
.vortice-about-label-line {
    display: none;
}

/* Heading */
.vortice-about-heading {
    font-size: 36px;
    font-weight: 200 !important;
    line-height: 1 !important;
    color: #0f172a;
    margin: 0 0 32px 0;
    padding: 0;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .vortice-about-heading {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .vortice-about-heading {
        font-size: 60px;
    }
}

.vortice-about-heading-gradient {
    display: block;
    background: linear-gradient(to right, #00963E, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600 !important;
}

/* Paragraphs */
.vortice-about-text {
    margin-bottom: 0;
}

.vortice-about-text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 32px 0;
}

.vortice-about-text p:last-child {
    margin-bottom: 0;
}

.vortice-about-text strong {
    color: #0f172a;
    font-weight: 500;
}

/* ---- Stats row (hidden in new design) ---- */
.vortice-about-stats {
    display: none;
}

/* ---- Mobile adjustments ---- */
@media (max-width: 767px) {
    .vortice-about {
        padding: 64px 0 80px;
        min-height: auto;
    }

    .vortice-about-image-badge-value {
        font-size: 20px !important;
    }

    .vortice-about-image-badge {
        bottom: 24px;
        left: 24px;
    }

    .vortice-about-heading {
        font-size: 32px;
    }

    .vortice-about-text p {
        font-size: 16px;
    }
}