:root {
    --brand-gold: #b99149;
    --brand-gold-dark: #9c7637;
    --brand-green: #0d4f34;
    --text-dark: #333333;
    --container-width: 1200px;
    
    /* Colores del menú lateral */
    --menu-bg-active: #f5f0e9;
    --menu-text-active: #c07b34;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background-color: #fcfcfc;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, .sidebar-title, .menu-item-link, .btn-contact, .feature-mini span, .oswald-font, .hero-subtitle {
    font-family: 'Oswald', 'Arial Narrow', sans-serif !important;
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* --- HEADER / NAVEGACIÓN --- */
.main-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-link {
    display: block;
}

.brand-logo {
    height: 52px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-menu .nav-item a {
    font-size: 14.5px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu .nav-item a:hover {
    color: var(--brand-gold);
}

.nav-menu .nav-item.active a {
    color: var(--brand-green);
    font-weight: 600;
}

.nav-menu .nav-item .btn-contact {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--brand-gold);
    color: #ffffff !important;
    padding: 11px 24px;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-menu .nav-item .btn-contact:hover {
    background-color: var(--brand-gold-dark);
    transform: translateY(-1px);
}

/* --- HERO BANNER --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    background-color: #000000;
    padding: 20px 0 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Contenedor del Breadcrumb forzado al extremo superior del Hero */
.breadcrumb-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-bottom: 25px;
    padding-top: 10px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #ffffff;
}

.breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--brand-gold);
}

.breadcrumbs i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs .current {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-title-area {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-main-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-top: 5px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
}

/* Subtítulo a la 4ta parte del título principal (52px / 4 = 13px) */
.hero-subtitle {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-top: 6px;
    display: block;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 620px;
    margin-bottom: 25px;
}

.hero-description p {
    margin-bottom: 15px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 35px;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-mini img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-mini span {
    font-size: 13px;
    text-transform: uppercase;
    color: #ffffff;
}

/* --- TARJETA DE COBERTURA (FLOTANTE) --- */
.coverage-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: #333333;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.card-brief {
    font-size: 13px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 20px;
}

.card-subtitle {
    font-family: 'Oswald', 'Arial Narrow', sans-serif !important;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.card-list {
    list-style: none;
    margin-bottom: 25px;
}

.card-list li {
    font-size: 13px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-list li i {
    color: #c07b34;
    font-size: 14px;
}

.benefit-direct h4 {
    font-family: 'Oswald', 'Arial Narrow', sans-serif !important;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.benefit-direct p {
    font-size: 13px;
    line-height: 1.5;
    color: #555555;
}

/* --- CUERPO PRINCIPAL --- */
.content-section {
    padding: 60px 0 80px 0;
    background-color: #fdfdfd;
}

.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* --- MENÚ LATERAL --- */
.sidebar-menu-wrapper {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    padding: 24px 16px;
    border: 1px solid #f0f0f0;
}

.sidebar-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #222222;
    margin-bottom: 20px;
    padding-left: 8px;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #444444;
    transition: all 0.2s ease;
    background-color: transparent;
    cursor: pointer;
}

.menu-item-link .link-left-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-item-link .link-left-content img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.2s ease;
}

.menu-item-link i.fa-chevron-right {
    font-size: 12px;
    color: #999999;
    transition: all 0.2s ease;
}

.sidebar-menu li:not(.active) .menu-item-link:hover {
    background-color: var(--menu-bg-active);
    color: var(--menu-text-active);
}

.sidebar-menu li:not(.active) .menu-item-link:hover .link-left-content img {
    filter: none;
    opacity: 1;
}

.sidebar-menu li.active .menu-item-link {
    background-color: var(--menu-bg-active) !important;
    color: var(--menu-text-active) !important;
    border-left: 4px solid var(--menu-text-active);
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.sidebar-menu li.active .menu-item-link .link-left-content img {
    filter: none !important;
    opacity: 1 !important;
}

.sidebar-menu li.active .menu-item-link i.fa-chevron-right {
    color: var(--menu-text-active) !important;
}

/* --- CONTENEDOR CENTRAL DE DETALLE --- */
.detail-container {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.tab-content.active-content {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-top-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 35px;
    align-items: start;
    margin-bottom: 40px;
}

.detail-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.detail-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}

.detail-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #555555;
}

.detail-image-box {
    width: 100%;
}

.detail-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: block;
}

.benefits-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    border-top: 1px solid #f0f0f0;
    padding-top: 35px;
}

.benefit-pill {
    background-color: #fcf8f2;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    min-height: 140px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(192,123,52,0.03);
}

.benefit-pill img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}

.benefit-pill span {
    font-size: 13.5px;
    font-weight: 600;
    color: #222222;
    line-height: 1.4;
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 1150px) {
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .coverage-card { max-width: 500px; }
    .main-layout { grid-template-columns: 1fr; }
    .sidebar-menu-wrapper { max-width: 100%; }
}

@media (max-width: 900px) {
    .benefits-horizontal-grid { grid-template-columns: 1fr; gap: 15px; }
    .benefit-pill { min-height: auto; flex-direction: row; text-align: left; justify-content: flex-start; padding: 16px; }
}

@media (max-width: 850px) {
    .detail-top-content { grid-template-columns: 1fr; }
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 10px; }
    .nav-menu { display: none; }
}

@media (max-width: 550px) {
    .hero-features { flex-direction: column; gap: 15px; }
    .detail-title { font-size: 26px; }
}