/* --- SECCIÓN BANNER DE CONTACTO (CALLOUT) --- */
.callout-section {
    position: relative;
    width: 100%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 20px 45px 20px;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

/* Superposición con la tonalidad naranja corporativa */
.callout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Triangulito / Muesca en el borde superior */
.callout-arrow-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #eef0f2; /* Fondo de Proyectos Entregados */
    z-index: 3;
}

.callout-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.callout-title {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.callout-text {
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 300;
    margin: 0 0 12px 0;
    color: #fce8e0;
    line-height: 1.4;
}

.callout-phone {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    color: #ffffff;
}

.callout-btn {
    display: inline-block;
    background-color: #F69C00; /* Tono ocre/dorado corporativo */
    color: #ffffff;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 32px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.callout-btn:hover {
    background-color: #d88300;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .callout-title { font-size: 32px; }
    .callout-phone { font-size: 30px; }
    .callout-text { font-size: 13px; }
}