.contacto-seccion {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.contacto-tag {
    color: #D32F2F; /* Tu dorado */
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contacto-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

/* Items de información */
.contacto-items {
    margin-top: 40px;
}

.c-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.c-item i {
    font-size: 24px;
    background: #D32F2F;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 20px;
}

.c-item h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.c-item p {
    margin: 0;
    color: #666;
}

/* Formulario */
.contacto-formulario-contenedor {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.custom-input {
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #D32F2F;
    box-shadow: 0 0 8px rgba(220, 176, 94, 0.2);
    outline: none;
}

.btn-enviar {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-enviar:hover {
    background-color: #D32F2F;
}

/* Responsividad */
@media (max-width: 991px) {
    .contacto-info {
        margin-bottom: 50px;
        text-align: center;
    }
    .c-item {
        justify-content: center;
    }
    .contacto-titulo {
        font-size: 2rem;
    }
}
.contacto-seccion-expandida {
    width: 100%;
    background-color: #fff;
}

/* Contenedores de contenido para que crezcan en pantallas anchas */
.contacto-contenido-wrapper {
    padding: 100px 10%; /* Ajusta este % para controlar cuánto se expande el texto */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bloque Izquierdo (Info) */
.contacto-bloque-info {
    background-color: #1a1a1a;
    color: #fff;
}

.contacto-tag {
    color: #D32F2F;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
}

.contacto-titulo {
    font-size: clamp(2rem, 4vw, 3.5rem); /* Tamaño dinámico según pantalla */
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
}

.contacto-descripcion {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* Estilo de los items de contacto */
.detalles-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detalles-item i {
    font-size: 1.8rem;
    color: #D32F2F;
}

.detalles-item span {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #D32F2F;
}

.detalles-item p {
    font-size: 1.2rem;
    margin: 0;
}

/* Bloque Derecho (Formulario) */
.contacto-bloque-formulario {
    background-color: #fcfcfc;
}

.contacto-form-grid label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #333;
}

.contacto-form-grid .form-control {
    border: none;
    border-bottom: 2px solid #e1e1e1;
    border-radius: 0;
    padding: 12px 10px;
    background: transparent;
    transition: all 0.3s ease;
}

.contacto-form-grid .form-control:focus {
    box-shadow: none;
    border-color: #D32F2F;
    background-color: #fff;
}

.btn-enviar-diamco {
    background-color: #D32F2F;
    color: #fff;
    border: none;
    padding: 18px 45px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: 0.3s;
    width: auto;
}

.btn-enviar-diamco:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
}

/* Mapa */
.contacto-mapa-footer {
    filter: grayscale(100%) invert(90%) contrast(90%); /* Mapa estilo elegante/claro */
    line-height: 0;
}

/* Responsividad */
@media (max-width: 991px) {
    .contacto-contenido-wrapper {
        padding: 60px 5%;
    }
    .contacto-titulo {
        font-size: 2.2rem;
    }
}

.contacto-bloque-info p{
    color: white;
}
.contacto-bloque-info h2{
    color: white;
}