nosotros.css

/* =========================================
   NOSOTROS / AMERICATOURS
========================================= */

/* Banner */
.nosotros-banner {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.nosotros-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 20, 55, 0.42) 0%, rgba(8, 20, 55, 0.12) 100%);
    z-index: 1;
}

.nosotros-banner .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.nosotros-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 760px;
    text-align: center;
}

.nosotros-banner-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(60px, 8vw, 128px);
    line-height: 0.95em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Intro */
.nosotros-intro {
    padding: 90px 0 40px;
}

.nosotros-intro .about-two_text {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.9em;
    color: #666666;
}

/* Features */
.nosotros-features {
    padding: 20px 0 100px;
}

.nosotros-features .inner-container {
    background: #f7f7f7;
    border-radius: 34px;
    padding: 60px 30px 30px;
}

.nosotros-features .feature-block_one-inner {
    height: 100%;
    background: transparent;
    text-align: center;
    box-shadow: none;
    border: 0;
    padding: 0 15px;
}

.nosotros-features .feature-block_one-icon {
    width: 110px;
    height: 110px;
    line-height: 110px;
    margin: 0 auto 28px;
    border-radius: 28px;
    background: #edf8f1;
    color: #48c07a;
    font-size: 52px;
}

.nosotros-features .feature-block_one-title {
    font-size: 20px;
    line-height: 1.3em;
    margin-bottom: 14px;
    text-transform: none;
}

.nosotros-features .feature-block_one-text {
    font-size: 16px;
    line-height: 1.8em;
    color: #666666;
}

/* Cómo funciona */
.nosotros-trip {
    padding: 0 0 110px;
}

.nosotros-trip .inner-container {
    padding: 0;
}

.nosotros-trip .trip-tabs.tabs-box {
    display: flex;
    align-items: stretch;
    gap: 36px;
}

.nosotros-trip .trip-info-tabs .tab-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 110px;
    padding-top: 18px;
}

.nosotros-trip .trip-info-tabs .tab-btns .tab-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #5a9be6;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.nosotros-trip .trip-info-tabs .tab-btns .tab-btn.active-btn,
.nosotros-trip .trip-info-tabs .tab-btns .tab-btn:hover {
    background: #e6f0ff;
    color: #2f82e8;
}

.nosotros-trip .tabs-content {
    width: 100%;
}

.nosotros-trip .tab .image {
    position: relative;
    height: 560px;
    border-radius: 30px;
    overflow: hidden;
    background: #eaeaea;
}

.nosotros-trip .tab .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.01);
    filter: contrast(1.04) saturate(1.03);
}

.nosotros-trip .overlay-box {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 34px 40px 34px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.03) 35%, rgba(7, 11, 74, 0.66) 100%);
}

.nosotros-trip .overlay-box h4,
.nosotros-trip .overlay-box h4 a,
.nosotros-trip .overlay-box .text,
.nosotros-trip .overlay-box h1,
.nosotros-trip .overlay-box h1 a {
    color: #ffffff !important;
}

.nosotros-trip .overlay-box h4 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 800;
    text-transform: uppercase;
}

.nosotros-trip .overlay-box .text {
    max-width: 390px;
    text-align: right;
    font-size: 17px;
    line-height: 1.5em;
    font-weight: 500;
}

.nosotros-trip .overlay-box h1 {
    margin: 0;
    padding-left: 14px;
    padding-bottom: 6px;
    font-size: clamp(72px, 8vw, 122px);
    line-height: 0.92em;
    font-weight: 800;
    letter-spacing: -2px;
}

/* Equipo */
.nosotros-team {
    padding: 0 0 120px;
}

.nosotros-team .auto-container {
    max-width: 1360px;
}

.nosotros-team .sec-title {
    margin-bottom: 44px;
}

.nosotros-team .sec-title_heading {
    text-align: center;
    font-size: 60px;
    line-height: 1em;
    font-weight: 800;
    text-transform: uppercase;
}

.team-layout {
    display: grid;
    grid-template-columns: 1.02fr 1fr 1fr;
    grid-template-rows: 340px 340px 340px;
    grid-template-areas:
        "ceo manager finance"
        "ceo sales sales"
        "hr ops ops";
    gap: 24px;
}

.team-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #dddddd;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.team-card:hover img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.team-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 28px 28px;
    background: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.78) 100%);
    transition: all 0.35s ease;
}

.team-card-overlay h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.1em;
    font-weight: 800;
    text-transform: uppercase;
}

.team-card-overlay .team-name {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35em;
    font-weight: 600;
}

.team-extra {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.65em;
    margin-top: 0;
    transition: all 0.35s ease;
}

.team-card:hover .team-extra {
    max-height: 140px;
    opacity: 1;
    margin-top: 14px;
}

.team-card-ceo { grid-area: ceo; }
.team-card-manager { grid-area: manager; }
.team-card-finance { grid-area: finance; }
.team-card-sales { grid-area: sales; }
.team-card-hr { grid-area: hr; }
.team-card-ops { grid-area: ops; }

/* Contacto */
.nosotros-contact {
    padding: 0 0 100px;
}

.nosotros-contact .auto-container {
    max-width: 1360px;
}

.nosotros-contact .contact-one_box {
    background: #ffffff;
    border-radius: 28px;
    padding: 58px 48px 26px;
    box-shadow: 0 14px 38px rgba(0,0,0,0.06);
}

.nosotros-contact .sec-title {
    margin-bottom: 28px;
}

.nosotros-contact .sec-title_heading {
    font-size: 56px;
    line-height: 1em;
    font-weight: 800;
}

.nosotros-contact .title {
    color: #5d99df;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.nosotros-contact .text,
.nosotros-contact a {
    color: #222222;
    font-size: 24px;
    line-height: 1.7em;
}

.nosotros-contact .button-box {
    text-align: right;
}

/* Footer */
.main-footer .footer-nav li a {
    transition: color 0.3s ease;
}

.main-footer .footer-nav li a:hover {
    color: #48c07a !important;
}

/* Responsive */
@media (max-width: 1399px) {
    .nosotros-banner,
    .nosotros-banner-content {
        min-height: 680px;
    }

    .nosotros-team .auto-container,
    .nosotros-contact .auto-container {
        max-width: 1180px;
    }

    .team-layout {
        grid-template-rows: 300px 300px 300px;
    }

    .nosotros-team .sec-title_heading {
        font-size: 48px;
    }

    .nosotros-contact .sec-title_heading {
        font-size: 44px;
    }

    .nosotros-contact .text,
    .nosotros-contact a {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .nosotros-trip .trip-tabs.tabs-box {
        flex-direction: column;
    }

    .nosotros-trip .trip-info-tabs .tab-btns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        min-width: 100%;
        padding-top: 0;
    }

    .nosotros-trip .tab .image {
        height: 500px;
    }

    .team-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 280px 280px 280px;
        grid-template-areas:
            "ceo manager"
            "ceo finance"
            "sales sales"
            "hr ops";
    }

    .nosotros-team .sec-title_heading {
        font-size: 42px;
    }

    .nosotros-contact .sec-title_heading {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .nosotros-banner,
    .nosotros-banner-content {
        min-height: 460px;
    }

    .nosotros-banner-content h1 {
        font-size: 44px;
        line-height: 1.05em;
    }

    .nosotros-intro {
        padding: 70px 0 30px;
    }

    .nosotros-intro .about-two_text {
        font-size: 17px;
    }

    .nosotros-features .inner-container {
        padding: 40px 20px 10px;
    }

    .nosotros-trip .overlay-box {
        padding: 24px 22px;
    }

    .nosotros-trip .overlay-box .d-flex {
        flex-direction: column;
        gap: 12px;
    }

    .nosotros-trip .overlay-box .text {
        text-align: left;
        max-width: 100%;
        font-size: 16px;
    }

    .nosotros-trip .overlay-box h1 {
        padding-left: 6px;
        font-size: 58px;
    }

    .nosotros-trip .tab .image {
        height: 420px;
    }

    .team-layout {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 260px);
        grid-template-areas:
            "ceo"
            "manager"
            "finance"
            "sales"
            "hr"
            "ops";
    }

    .nosotros-team .sec-title_heading {
        font-size: 30px;
    }

    .team-card-overlay {
        padding: 20px 16px 16px;
    }

    .team-card-overlay h4 {
        font-size: 16px;
    }

    .team-card-overlay .team-name {
        font-size: 14px;
    }

    .team-extra {
        font-size: 13px;
    }

    .nosotros-contact .contact-one_box {
        padding: 28px 22px 8px;
    }

    .nosotros-contact .sec-title_heading {
        font-size: 30px;
    }

    .nosotros-contact .text,
    .nosotros-contact a {
        font-size: 16px;
    }

    .nosotros-contact .button-box {
        text-align: left;
        margin-top: 10px;
    }
}

.nosotros-banner {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 690px !important;
    position: relative !important;
}

.nosotros-banner .auto-container,
.nosotros-banner-content {
    position: relative;
    z-index: 2;
}

.nosotros-banner-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.28) !important;
}