/**
 * Estilos Frontend - Industrial Room Funcionalidades
 */

/* Contenedor de información */
.ir-info-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ir-info-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Formulario de contacto */
.ir-formulario-contacto {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ir-form-group {
    margin-bottom: 20px;
}

.ir-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.ir-form-group input,
.ir-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.ir-form-group input:focus,
.ir-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.ir-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ir-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.ir-submit-btn:active {
    transform: translateY(0);
}

/* Mensajes */
.ir-mensaje-exito {
    background: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.ir-error {
    color: #f44336;
    padding: 10px;
    background: #ffebee;
    border-radius: 5px;
    border-left: 4px solid #f44336;
}

/* Datos de API */
.ir-api-data {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    overflow-x: auto;
}

.ir-api-data pre {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .ir-formulario-contacto {
        padding: 20px;
        margin: 10px;
    }
}

