/* nosotros.css — Nosotros page styles */

/* ---- Hero ---- */
.nos-hero {
    padding: 100px 24px 32px;
    text-align: center;
}

.nos-hero__title {
    font-family: 'Syne', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    margin: 14px 0 16px;
}

.nos-hero__sub {
    color: #888;
    font-size: 15px;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.nos-section {
    padding: 32px 20px;
}

/* ---- Intro Grid ---- */
.nos-intro-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nos-intro-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    color: #999;
    font-size: 14px;
    line-height: 1.75;
}

.nos-intro-card--accent {
    border-color: rgba(200, 14, 20, 0.25);
    background: rgba(200, 14, 20, 0.04);
    color: #c8c8c8;
}

.nos-intro-card--full {
    color: #999;
}

/* ---- Values Grid ---- */
.nos-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

.nos-value {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nos-value__icon {
    font-size: 22px;
}

.nos-value__text {
    font-size: 13px;
    font-weight: 600;
    color: #bbb;
    line-height: 1.4;
}

/* ---- Mission / Vision ---- */
.nos-mv-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nos-mv-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
}

.nos-mv-card--vision {
    border-color: rgba(200, 14, 20, 0.25);
    background: rgba(200, 14, 20, 0.04);
}

.nos-mv-card__label {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 8px;
}

.nos-mv-card__title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.nos-mv-card__text {
    color: #c8c8c8;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

/* ---- CTA ---- */
.nos-cta {
    padding: 32px 20px 48px;
    text-align: center;
}

.nos-cta .section__text {
    margin-bottom: 24px;
}

/* ---- Footer ---- */
.footer__cols {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer__brand {
    flex: 1;
}

.footer__logo {
    max-height: 22px;
    width: auto;
    display: block;
    margin-bottom: 10px;
}

.footer__tagline {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer__links a {
    color: #555;
    font-size: 13px;
    text-decoration: none;
}

.footer__links a:hover {
    color: #aaa;
}

.footer__bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1e;
    color: #444;
    font-size: 12px;
}

/* ---- WhatsApp Floating Button ---- */
.wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: opacity 0.2s;
}

.wa-btn:hover {
    opacity: 0.9;
}

.wa-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
