.c2abox{
    width: calc(100% - 20px);
    height: auto;
    background-color: var(--bg-card);
    padding: 30px 10px;
}
/* Contenedor principal en 2 columnas */
.our_standard {
    display: grid;
    /* Crea dos columnas iguales siempre que quepan, si no, baja a una */
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1200px; /* Ajusta según tu diseño */
    margin: 0 auto;
}

.os_box {
    display: flex;
    width: 100%;
    /* Eliminamos height fijo para que el contenido respire */
    min-height: 160px; 
    background-color: transparent;
    border: 1px solid var(--border-soft);
    border-radius: 17px;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.os_box:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Espacio para el icono */
.os_img {
    flex: 0 0 100px; 
    background-color: rgba(255, 255, 255, 0.1); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.os_der {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra el contenido verticalmente */
    padding: 15px 0;
}

/* Título */
.os_titulo {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem); /* Ajustado para no chocar en 2 col */
    font-weight: 700;
    padding: 0 20px;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Texto descriptivo */
.os_texto {
    font-size: 1rem; /* 1.6rem suele ser muy grande para párrafos densos en columnas */
    font-weight: 400;
    padding: 0 20px;
    line-height: 1.5;
    color: #ccc; /* Un tono más suave para jerarquía visual */
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
    .our_standard {
        grid-template-columns: 1fr;
        padding: 0;
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .os_box {
        flex-direction: row; /* Mantenemos horizontal si el icono es pequeño */
        align-items: flex-start;
    }
    
    .os_img {
        flex: 0 0 70px;
        height: 70px;
        margin: 20px 0 0 15px;
        border-radius: 50%; /* Icono circular en móvil queda bien */
    }

    .os_titulo {
        font-size: 1.3rem;
    }

    .os_texto {
        font-size: 0.95rem;
    }
}
/****************************************************************************/
.fondo_home_contact{
    width: calc(100% - 20px);
    height: auto;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 1920px;
    max-height: 720px;
    min-height:350px;
    aspect-ratio: 1920 / 740;
    overflow: hidden;
    z-index:0;
    position: relative;
}
.fondo_home_contact {
    position: relative;
} 

@media (min-width: 1920px) {
    .contenedor_fondo {
        height: 740px;
    }
}
/****************************************************************************/
.ballones{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.ballon-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ballon { 
    width: 214px;
    height: 214px;
    background-color: black;
    color: white;
    /* De 2.5rem a 4rem según el ancho de pantalla */
    font-size: clamp(2.5rem, 5vw, 4rem);
    display: flex; /* Cambiado a flex para centrar mejor el texto variable */
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.ballon-label {
    width: auto;
    /* De 1.5rem a 2.3rem */
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-weight: bold;
    margin: 15px 0 0 0;
    text-align: center;
}
@media (max-width: 768px) {
    .ballones {
        flex-direction: column;
        gap: 30px;
    }
}

/******************************************************************************/
.about_home {
    display: flex;
    flex-wrap: wrap;       
    gap: 40px;             /* Espacio entre columnas */
    align-items: stretch;  /* Fuerza a que ambas tengan la misma altura */
    width: calc( 100% - 40px );
    padding:20px; 
    height: 450px;
    background-color: var(--bg-card);
}
   
/* ESCRITORIO (1024px o más) */
 
@media (min-width: 1024px) {
    .about_home {
        flex-direction: row;
        align-items: stretch; /* Esto iguala las alturas de las columnas */
        gap: 50px;
    }

    .about_col_izq, 
    .about_col_der {
        flex: 1;
        width: 50%;
        flex-direction: column;
        justify-content: center;
        display: flex;        
    }

    .about_col_izq img {
        width: 100%;
        height: 100%; /* Obliga a la imagen a estirarse al alto del padre */
        object-fit: cover; /* Recorta la imagen para que llene el espacio sin deformarse */
        object-position: center;
        display: block;
    }
}

/* MÓVIL Y TABLET (Menos de 1024px) */
@media (max-width: 1023px) {
    .about_home {
        flex-direction: column;
        gap: 30px;
    }

    .about_col_izq, 
    .about_col_der {
        width: 100%;
    }

    .about_col_izq img {
        width: 100%;
        height: auto; /* En móvil deja que la imagen respire */
        max-height: 400px; /* Evita que la imagen sea gigante hacia abajo */
        object-fit: cover;
        object-position: center;
        display: block;
    }
}
/******************************************************************************/
/* Contenedor Principal */
.about-section {
    padding: 80px 20px;
    background-color: var(--bg-main); /* Asumiendo que usas un fondo oscuro */
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* --- LADO A: IMAGEN --- */
.about-image-wrapper {
    position: relative;
    padding: 15px;
}

#random-image-container {
    width: 100%;
    aspect-ratio: 4 / 5; /* Formato vertical elegante */
    background: #222; /* Placeholder mientras carga */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--border-soft); /* Marco sólido desplazado */
}

.image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#random-image-container:hover .image-placeholder {
    transform: scale(1.05);
}

/* Badge de Experiencia */
.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--text-light);
    color: var(--bg-dark);
    padding: 20px;
    border-radius: 15px;
    font-weight: 900;
    font-family: 'Roboto Flex', sans-serif;
    text-align: center;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --- LADO B: TEXTO --- */
.eyebrow {
    display: block;
    color: var(--color-brand-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.title-about {
    font-family: 'Roboto Flex', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--color-brand-primary);
}

.text-about {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1.6rem; 
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}
 
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-features span {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-wrapper {
        max-width: 450px;
        margin: 0 auto 40px;
    }

    .about-features {
        justify-content: center;
    }
    
    .experience-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
    }
}
/******************************************************************************/