/* ============================================================
   SECCIÓN: VIAJES DE NEGOCIOS (STAMPIA CORPORATE)
   ============================================================ */

/* HERO B2B */
.business-hero-section {
    background-color: transparent;
    padding: 100px 0 70px 0;
    text-align: center;
}

.business-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    display: inline-block;
    background: #fff0f2;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.business-title {
    font-family: var(--font-serif, serif);
    color: #0D1B2A;
    font-size: clamp(30px, 5vw, 44px);
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.business-lead {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-primary-corp {
    display: inline-block;
    background-color: #0d1b2a; /* Azul marino ejecutivo */
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-corp:hover {
    background-color: #d27484; /* Rosa en hover para mantener marca */
    transform: translateY(-2px);
}

/* GRID DE SERVICIOS */
.business-services-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.business-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: #fbf6f0;
    padding: 40px 32px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    color: #d27484;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.service-card h3 {
    font-family: var(--font-serif, 'Georgia', serif);
    font-size: 1.3rem;
    color: #0d1b2a;
    margin: 0 0 12px 0;
}

.service-card p {
    font-size: 0.92rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* POR QUÉ ELEGIRNOS */
.business-why-section {
    padding: 40px 0 80px 0;
    background-color: #ffffff;
}

.business-why-box {
    background-color: #0d1b2a; /* Caja oscura elegante */
    color: #ffffff;
    border-radius: 20px;
    padding: 60px;
}

.business-why-box h2 {
    font-family: var(--font-serif, 'Georgia', serif);
    font-size: 2.1rem;
    margin: 12px 0 28px 0;
    color: #ffffff;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.why-list li strong {
    color: #f1bdc6; /* Rosa suave para destacar conceptos */
}

/* FORMULARIO CORPORATIVO */
.business-form-section {
    background-color: transparent;
    padding: 90px 0;
}

.corp-form-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
}

.form-header h2 {
    font-family: var(--font-serif, 'Georgia', serif);
    font-size: 2rem;
    color: #0d1b2a;
    margin: 8px 0;
}

.form-header p {
    color: #666666;
    font-size: 0.92rem;
}

.corp-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.corp-form .form-group {
    margin-bottom: 20px;
}

.corp-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.corp-form input,
.corp-form select,
.corp-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    font-size: 0.92rem;
    background-color: #fcfcfc;
    outline: none;
    transition: border 0.3s ease;
}

.corp-form input:focus,
.corp-form select:focus,
.corp-form textarea:focus {
    border-color: #d27484;
    background-color: #ffffff;
}

.btn-submit-corp {
    width: 100%;
    background-color: #d27484;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit-corp:hover {
    background-color: #b85b6b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .business-services-grid {
        grid-template-columns: 1fr;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .corp-form .form-row {
        grid-template-columns: 1fr;
    }

    .business-why-box {
        padding: 36px 24px;
    }

    .corp-form-card {
        padding: 28px 20px;
    }
}