:root {
    --brand-gold: #b99149;
    --brand-green: #0d4f34;
    --text-dark: #333333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
    height: 100%;
}

/* --- 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;
}


/* --- HERO BANNER --- */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 650px;
    max-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center; 
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.hero-wrapper-content {
    padding-top: 60px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.badge-category {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 15px;
}

.badge-category::before {
    content: "";
    width: 24px;
    height: 2px;
    background-color: var(--brand-gold);
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.hero-title span {
    color: var(--brand-gold);
    display: block;
    margin-top: 5px;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background-color: var(--brand-green);
    margin: 25px 0;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 400;
    margin-bottom: 35px;
}

.btn-recommendation {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--brand-gold);
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-recommendation:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
}

.btn-recommendation .btn-icon-box {
    background-color: var(--brand-gold);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
}

.btn-recommendation .btn-text-box {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0 25px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- FILA DE BENEFICIOS / ICONOS --- */
.benefits-panel {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 25px 0;
    position: relative;
    z-index: 4;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    padding-right: 15px;
}

.benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

/* CAMBIO A TIPOGRAFÍA OSWALD Y MAYÚSCULAS PARA LOS BULLETS */
.benefit-info h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.benefit-info p {
    font-family: var(--font-body);
    font-size: 12px;
    color: #cccccc;
    line-height: 1.4;
}
 /* --- DISEÑO RESPONSIVO (MÓVIL) --- */
 @media (max-width: 768px) {
    .header-container { 
        height: 80px; 
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
   

    /* Héroe adaptado */
    .hero-section { height: auto; max-height: none; }
    .hero-wrapper-content { padding: 40px 0; }
    .hero-title { font-size: 30px; }
    .benefits-grid { grid-template-columns: 1fr; }
}