/* Landings de servicios BPO — Business Online SAS */
:root {
    --primary-dark: #0b2545;
    --secondary-dark: #134074;
    --accent-blue: #00b4d8;
    --text-muted: #475569;
    --white: #ffffff;
    --primary-color: #0b2545;
    --secondary-color: #134074;
    --accent-color: #00b4d8;
    --text-color: #1d2d44;
    --light-bg: #f4f6f9;
    --dark-color: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.brand-text-wrapper {
    border-left: 1px solid #cbd5e1;
    padding-left: 20px;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.brand-slogan {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.logo img {
    max-height: 65px;
    display: block;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    border: 1.5px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    border-color: var(--primary-dark);
    background-color: var(--primary-dark);
    color: var(--white);
}

.nav-links a.nav-cta {
    border-color: var(--primary-dark);
}

.breadcrumb {
    background: var(--light-bg);
    padding: 12px 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.hero {
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.95), rgba(19, 64, 116, 0.85)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 90px 20px;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.15rem;
    max-width: 780px;
    margin: 0 auto 28px;
    opacity: 0.92;
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, background-color 0.3s;
    margin: 4px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    background-color: #0096c7;
    color: var(--white);
}

.btn-cta.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin: 32px 0 14px;
    font-weight: 700;
}

.content-section p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 14px;
    max-width: 820px;
}

.content-section ul {
    margin: 12px 0 20px 0;
    padding-left: 0;
    list-style: none;
    max-width: 820px;
}

.content-section li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #4a5568;
    font-size: 1rem;
}

.content-section li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.related-services {
    background: var(--light-bg);
}

.related-services h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.content-section a {
    color: var(--secondary-color);
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.related-card {
    background: var(--white);
    padding: 24px;
    border-radius: 6px;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.related-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.related-card a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-cta-section {
    text-align: center;
    padding: 70px 20px;
}

.contact-cta-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-cta-section p {
    color: #4a5568;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-about p {
    opacity: 0.85;
    font-size: 0.9rem;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .nav-container {
        flex-direction: column;
        padding: 15px 20px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .breadcrumb {
        padding: 12px 20px;
    }
}
