/* Reset básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #fdfbf6;
    --text-color: #666257;
    --gold-color: #c39257;
    --line-color: #e5dec9;
    --font-family: 'Cabin', sans-serif;
    --white: #ffffff;
}

.main-container {
    background-image: url('../images/fondo-desarrollos.webp');
    background-repeat: no-repeat;
    background-position: 100% 0;
    width: 55%;
    margin: 0 auto;
    padding: 160px 40px 0 40px;
}

/* Elementos decorativos */
.decor-bar {
    width: 35px;
    height: 2px;
    background-color: var(--gold-color);
    margin-bottom: 25px;
}

.section-block {
    margin-bottom: 50px;
}

/* Tipografías principales */
.main-heading {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 12px;
}

.gold-text {
    color: var(--gold-color);
    font-weight: 600;    
}

.lead-paragraph {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 12px;
    font-weight: 400;
    max-width: 1100px;
    opacity: 0.95;
}

.max-width-p {
    max-width: 1100px;
    margin-bottom: 40px;
}

.bold-statement {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 45px;
}

/* Separador de secciones */
.section-divider {
    border: none;
    border-top: 1px solid var(--line-color);
    margin: 40px 0 40px 0;
}

/* DISEÑO DE GRIDS CON CSS GRID */

/* Grid de Métricas (Sección 1) */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 20px;
    text-align: center;
    margin: 0 auto;
    width: 88%;    
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 15px;
}

.metrics-grid .metric-card:not(:last-child) {
    border-right: 1px solid var(--line-color);
}

.icon-wrapper {
    width: 32px;
    height: 32px;
    color: var(--text-color);
    flex-shrink: 0;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.1;
}

.metric-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-top: 2px;
}

.metric-label-large {
    font-size:12px;
    font-weight: 600;
    letter-spacing: 0.05em; 
    line-height: 1.4;
}

/* Grid de Etapas (Sección 2) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin: 0 auto;
    width: 88%;
}

.step-card {
display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 10px;}

.steps-grid .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--line-color);
}

/* Estilizado del número envuelto en círculo solicitado */
.step-number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--white);
    border: 1px solid var(--gold-color);
    border-radius: 50%;
    margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;    
}

.step-number {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1;
}

.step-icon-container {
    width: 28px;
    height: 28px;
    color: var(--text-color);
    margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;    
}

.step-icon-container svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-highlight {
    font-size: 13px;
    line-height: 1.45;
    color: var(--gold-color);
    font-weight: 400;
}

/* DISEÑO RESPONSIVO Y CONFIGURACIONES MÓVILES SOLICITADAS */

@media (max-width: 1100px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }
    
    .metrics-grid .metric-card:not(:last-child) {
        border-right: none;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 40px;
    }

    .steps-grid .step-card:not(:last-child)::after {
        display: none;
    }
}

/******************************************************
          MOOD CELULARES
    [ MEDIA all 1-761 ]
*******************************************************/
@media all and (min-width: 1px) and (max-width: 761px)
{

 .main-container {
    background-image:none;    
    width: 100%;
    margin: 0 auto;
    padding: 160px 30px 0 30px;
}

/* Elementos decorativos */
.decor-bar {
    width: 35px;
    height: 2px;
    background-color: var(--gold-color);
    margin-bottom: 15px;
}

.section-block {
    margin-bottom: 20px;
}

/* Tipografías principales */
.main-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 12px;
}

.gold-text {
    color: var(--gold-color);
    font-weight: 600;    
}

.lead-paragraph {
    font-size: 12.5px;
    line-height: 20px;
    margin-bottom: 12px;
    letter-spacing: .8px;
    font-weight: 400;
    width: 100%;
    opacity: 1;
}

.max-width-p {
    width: 100%;
    margin-bottom: 40px;
}

.bold-statement {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 45px;
}

/* Separador de secciones */
.section-divider {
    border: none;
    border-top: 1px solid var(--line-color);
    margin: 40px 0 40px 0;
}

/* DISEÑO DE GRIDS CON CSS GRID */

/* Grid de Métricas (Sección 1) */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px 0 40px;  
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
    column-rule-color: red;
}

.icon-wrapper {
    width: 26px;
    height: 26px;
    color: var(--text-color);
    flex-shrink: 0;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.1;
}

.metric-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-top: 2px;
}

.metric-label-large {
    font-size:11px;
    font-weight: 600;
    letter-spacing: 0.05em; 
    line-height: 1.4;
}

/* Grid de Etapas (Sección 2) */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center;
    margin: 0 auto;
    width: 88%;
}

.step-card {
display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 10px;}

.steps-grid .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--line-color);
}

/* Estilizado del número envuelto en círculo solicitado */
.step-number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--white);
    border: 1px solid var(--gold-color);
    border-radius: 50%;
    margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;    
}

.step-number {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1;
}

.step-icon-container {
    width: 24px;
    height: 24px;
    color: var(--text-color);
    margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;    
}

.step-icon-container svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-highlight {
    font-size: 12px;
    line-height: 1.45;
    color: var(--gold-color);
    font-weight: 400;
}